String metaIndices = type.equals(RedisIndexKeys.AUTO) ? RedisIndexKeys.META_INDICES_AUTO : RedisIndexKeys.META_INDICES_MANUAL;
String metaType = type.equals(RedisIndexKeys.AUTO) ? RedisIndexKeys.META_AUTO : RedisIndexKeys.META_MANUAL;
try {
List<byte[]> indices = db.lrange(metaIndices, 0, db.llen(metaIndices));
if(null == indices) return;
for(byte[] idx: indices){
String indexName = new String(idx);