: > That seems quite slow for 120K docs. Is this on a warmed-up Solr? (I.e., : > is the index in the OS's disk cache?) : : I'm not sure if it's in the cache or not. How could I make sure that it will : be in the cache?
You're index is in the OS's disk cache if you've done some queries agaisnt it before you do your timing tests (and if your box has plenty of free memory for hte OS to use as a disk cache) : I did reduce the size of most of the caches because the memory situation was : unmanageable. the solr filterCache is one of hte best ways to get good search speed when you tend to reuse common filter queries (like your range queries) ... it's a space vs speed issue ... if you give it more ram, you can get better performance in the common case. PS... http://people.apache.org/~hossman/#solr-dev Please Use "[EMAIL PROTECTED]" Not "[EMAIL PROTECTED]" Your question is better suited for the [EMAIL PROTECTED] mailing list ... not the [EMAIL PROTECTED] list. solr-dev is for discussing development of the internals of the Solr application ... it is *not* the appropriate place to ask questions about how to use Solr (or write Solr plugins) when developing your own applications. -Hoss
