Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working with Lucene.My work is to Query nd perform search on it. I want to know the use of Filters.

share|improve this question
I think your question is same as stackoverflow.com/questions/1271234/… – ykartal Dec 8 '10 at 11:48

2 Answers

up vote 1 down vote accepted

Filters are different from queries in that filters can be cached. Basically, when you use a filter, Lucene stores a bitmap, where bit i is 1 if the ith document matches the filter, and 0 otherwise.

If you do a search for everything that matches a query and a filter, it will get the results of the query and bitwise-AND it with the cached filter. This can improve performance in some circumstances.

Basically, if you have one or two conditions that need to apply to almost every search (e.g. hide all documents which are "high security") then you might want to look into filters. Otherwise, just doing normal queries should perform better, since filters can take up a lot of memory.

share|improve this answer

Use of filters in any place, is about same. You write a predicate (set of rules, that item should have) and use it to efficiently remove elements from collection where predicate did not apply.

Personally I use Google Guava, but code should be about the same. For an example, lets assume that you have a collection of numbers and only need those what are over 4.

    ArrayList<Integer> ints = Lists.newArrayList(3, 6, 8, 3, 4, 6);
    System.out.println(ints);
    System.out.println(Collections2.filter(ints, new Predicate<Integer>() {
    @Override public boolean apply(Integer i) {return i > 4 ? true : false; }}));

This would print out:

[3, 6, 8, 3, 4, 6]
[6, 8, 6]
share|improve this answer
Thanks for the reply. But i Wanted to know in context of Lucene search.Further more i want to know about QueryFilter – Romi Dec 8 '10 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.