Re: Improve Solr Performance

2008-06-08 Thread Yonik Seeley
Some of these cache values are too large and will drastically slow some things down (like commiting new changes to the index) or may cause you to run out of memory over time. I would revert the cache params back to what they were in the example solrconfig.xml Then focus on requirements: are your

Re: Improve Solr Performance

2008-06-08 Thread khirb7
thank you for your response It's clear that fetching all documents at one time takes a lot of time so the search is too slow. I decided to fetch less than 20 documents at one time, but to optimise solr I have tried to increase the size of all the caches (the document cache, filterCache, result ca

Re: Improve Solr Performance

2008-06-05 Thread Walter Underwood
Do you need all the results? I have never seen a search UI that showed all results at once. Fetching all the results will be slow. Most sites fetch just the results needed to display one page. wunder On 6/5/08 12:46 AM, "khirb7" <[EMAIL PROTECTED]> wrote: > > hello every body > I want to impor