Re: system architecture question when using solr/lucene

2007-05-21 Thread Ajanta Phatak
Thanks to both of you for your responses - Otis and Chris. We did manage to run some benchmarks, but we think there are some surprising results here. It seems that caching is not affecting performance that much. Is that because of the small index size? Do these seem ok or is there any room

Re: system architecture question when using solr/lucene

2007-05-21 Thread Yonik Seeley
What are some typical examples of your queries (all of the params that are sent to Solr)? Query and Document caches typically result in small increases in performance. The filterCache can result in large increases, depending on the queries. Another possibility is that you may be hitting some

How to handle hl.fl form variable (any variable with a dot in its name) from javascript?

2007-05-21 Thread Teruhiko Kurosaka
I have a form that sets the hl.fl form hidden variable. I wanted to change the higlighted field depending on the query string that is typed, using JavaScript. This is normally done by the JavaScript code like this: document.myform.varname.value = whatever But this doesn't work for hl.fl

Re: How to handle hl.fl form variable (any variable with a dot in its name) from javascript?

2007-05-21 Thread Ryan McKinley
Teruhiko Kurosaka wrote: I have a form that sets the hl.fl form hidden variable. I wanted to change the higlighted field depending on the query string that is typed, using JavaScript. This is normally done by the JavaScript code like this: document.myform.varname.value = whatever But