AW: Re: Get used indices / field names [solve d]

2009-08-22 Thread herzoga
yes, i meant field names. Thanks for the information, that's perfect regards, Alexander Shalin Shekhar Mangar schrieb: On Fri, Aug 21, 2009 at 3:31 PM, Alexander Herzog herz...@ait.co.at wrote: Hi I'm using dynamic fields and was wandering how to retrieve information about used

Calculate Theoretical Max

2009-08-22 Thread jlman
Is there a way to calculate a theoretical max score for the current query? This would be the same score you'd get if a document matched the query exactly. For example: title:This is my query string desc:Another field, just to show that this concept isn't limited to basic queries. The

Re: Not return my expected contents

2009-08-22 Thread Lance Norskog
These text types 'stem' the words arabic, arabian, and arabs to 'arab'. http://wiki.apache.org/solr/SchemaDesign The Porter classes in the text definitions do this process. You want a field type without stemming. In Solr 1.3, the field type 'textSpell' and in Solr 1.4 'textgen' do not have

Re: Implementing a logout

2009-08-22 Thread Lance Norskog
There is no 'logout'. There is no permanent state in Solr beyond the Lucene index. There are caches, but these do not require any termination. The Lucene API has very solid self-protection for the indexes and Solr uses the API in the right way. If you run a Solr distribution in a standard servlet

Re: Implementing a logout

2009-08-22 Thread Lance Norskog
Sorry, hit 'send' too soon. You can kill the servlet process, but it is much better to use the servlet container's shutdown protocol. On Sat, Aug 22, 2009 at 6:46 PM, Lance Norskog goks...@gmail.com wrote: There is no 'logout'. There is no permanent state in Solr beyond the Lucene index. There