Re: Displaying fieldValueCache stats in Solr 1.4 admin/stats page

2010-04-15 Thread SandeepTagore
If you've never specified multiValued/tokenized fields for faceting, fieldValueCache won't be used. Koji Yes Koji. You are right. I just fired a faceted query and fieldValueCache is showing some stats. Thanks a lot. Sandeep -- View this message in context:

Re: Displaying fieldValueCache stats in Solr 1.4 admin/stats page

2010-04-14 Thread SandeepTagore
Thanks a lot for your quick response Yonik. It displays fieldValueCache's configuration details but it doesn't display the updated values when we refresh the page. Other caches are working fine. name:fieldValueCache class: org.apache.solr.search.FastLRUCache version:1.0

Error while sorting by geo_distance in Solr 1.4

2010-04-13 Thread SandeepTagore
Hi All, I am using Solr 1.4 (10 November 2009 release), Lucene core 2.9.2, LocalSolr 2.0, LocalLucene 2.0, Tomcat 5.5 I get the following error when I try to sort the result by geo_distance. Here is the stacktrace... SEVERE: java.lang.NullPointerException at

Re: How to make SOLR display empty value attributes also

2010-04-13 Thread SandeepTagore
I guess, You can achieve this with DataImportHandler Transformers. -- View this message in context: http://n3.nabble.com/How-to-make-SOLR-display-empty-value-attributes-also-tp712766p715436.html Sent from the Solr - User mailing list archive at Nabble.com.

Displaying fieldValueCache stats in Solr 1.4 admin/stats page

2010-04-13 Thread SandeepTagore
Hi All, FieldValueCache stats are not getting displayed on http://./solr/admin/stats.jsp page. I configured it in solrconfig.xml (Solr 1.4) as fieldValueCache class=solr.FastLRUCache size=512 autowarmCount=128 showItems=32/ Any inputs on this? Thank you. Regards, Sandeep -- View this

Re: Error sorting random field with Solr 1.4

2010-04-08 Thread SandeepTagore
I get the same error when I try to sort the result by geo_distance. I am using Solr 1.4 (Nov 2009 release), lucene 2.9.1 and localsolr 2.0. Thank you very much for your support. Here is the stacktrace... SEVERE: java.lang.NullPointerException at

Re: Spatial / Local Solr radius

2010-04-08 Thread SandeepTagore
I faced the same problem when i used locallucene 1.5 and localsolr 1.5. Now I am using localsolr 2.0 and locallucene 2.0 and I dont see that issue. You need to upgrade the binaries. -- View this message in context: http://n3.nabble.com/Spatial-Local-Solr-radius-tp487813p705744.html Sent from

Re: Error sorting random field with Solr 1.4

2010-04-08 Thread SandeepTagore
Commented the following line in org.apache.lucene.search.SortField return comparatorSource.newComparator(field, numHits, sortPos, reverse); and added the following line temporarily. return new FieldComparator.DoubleComparator(numHits, field, parser); Changed geo_distance type to double from

Re: change data dir location

2009-06-12 Thread sandeeptagore
- It should be possible to specify dataDir directly for a core in solr.xml (over and above specifying it as a variable). It should also be possible to pass the dataDir as a request parameter while creating a core through the REST API. - A simple scenario which requires this feature is when the