Query DSL: Query String _missing_ and _exists_ syntax, closes #446.

This commit is contained in:
kimchy 2010-10-22 18:14:07 +02:00
parent 8b0daf48f4
commit b0a0604473
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ public class NotDocSet extends GetDocSet {
}
@Override public boolean isCacheable() {
return set.isCacheable();
// if it is cached, create a new doc set for it so it will be fast for advance in iterator
return false;
}
@Override public boolean get(int doc) throws IOException {