Solr postFilter

2013-10-15 Thread Muhzin
Hi, I am developing a post filter implementation in solr 4.2.1 . the following is a gist to my implementation. https://gist.github.com/rmuhzin/6991544 I deployed my plugin in the library folder and updated the solrconfig.xml queryParser name=lastLoginParser class=com.m4marry.PostQParserPlugin

Re: solr postfilter question

2013-08-01 Thread Rohit Harchandani
Hi, I did finally manage to this. I get all the documents in the post filter and then call collect on the each ones that match the filter criteria. But for some reason, it does not seem to hit the query results cache (equals succeeds and the hashcode is good too)? Not sure what I am missing here?

Re: solr postfilter question

2013-08-01 Thread Rohit Harchandani
Basically i see it is looking up the cache and getting a hit, but it still seems to be collecting all the documents again. Thanks, Rohit On Thu, Aug 1, 2013 at 4:37 PM, Rohit Harchandani rhar...@gmail.com wrote: Hi, I did finally manage to this. I get all the documents in the post filter and

solr postfilter question

2013-07-10 Thread Rohit Harchandani
Hey, I am trying to create a plugin which makes use of postfilter. I know that the collect function is called for every document matched, but is there a way i can access all the matched documents upto this point before collect is called on each of them? Thanks, Rohir

Re: solr postfilter question

2013-07-10 Thread Yonik Seeley
On Wed, Jul 10, 2013 at 6:08 PM, Rohit Harchandani rhar...@gmail.com wrote: Hey, I am trying to create a plugin which makes use of postfilter. I know that the collect function is called for every document matched, but is there a way i can access all the matched documents upto this point before