Lucene index in memcache

2007-07-02 Thread Cathy Murphy
Is there a way to store lucene index in memcache. During high traffic search becomes very slow. :( -- Cathy www.nachofoto.com

Re: Lucene index in memcache

2007-07-02 Thread Erick Erickson
ng spent. Trust me on this one ... Some simple timings with System.currentTimeMilliseconds() will tell you a lot. Best Erick On 7/2/07, Cathy Murphy <[EMAIL PROTECTED]> wrote: Is there a way to store lucene index in memcache. During high traffic search becomes very slow. :( -- Cathy www.nachofoto.com

Re: Lucene index in memcache

2007-07-02 Thread Chris Hostetter
: Is there a way to store lucene index in memcache. During high traffic search : becomes very slow. :( http://people.apache.org/~hossman/#xyproblem Your question appears to be an "XY Problem" ... that is: you are dealing with "X", you are assuming "Y" will help yo

Re: Lucene index in memcache

2007-07-02 Thread Cathy Murphy
then fetch objects for only those ids , as required per the pagination. Also it is a dedicated search box . Thanks, -- Cathy www.nachofoto.com On 7/2/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Is there a way to store lucene index in memcache. During high traffic search : becomes

Re: Lucene index in memcache

2007-07-03 Thread Chris Hostetter
: I have done some profiling , and it seems the response is slow when there : are long queries(more than 5-6 words per query). : The way I have implemented is : I pass in the search query and lucene : returns the total number of hits, along with ids . I then fetch objects : for only those ids , as