Custom Sorting

2007-08-19 Thread Narayanan Palasseri
Hi All, Currently we are having an application which uses Lucene for text search and we are in the process of migrating to Solr. In our Lucene code we have the following way of using the sort criteria Sort sort = new Sort(new SortField[] { SortField.FIELD_SCORE, new SortField(customValue,

Re: custom sorting

2007-09-28 Thread Narayanan Palasseri
Hi all, Regarding this issue, we tried using a custom request handler which inturn uses the CustomCompartor. But this has a memory leak and we are almost got stuck up at that point. As somebody mentioned, we are thinking of moving towards function query to achieve the same. Please let me know wheth