Re: question on tokenization control

2012-05-01 Thread Dan Tuffery
Hi, "Is that an indexing setting or query setting that will tokenize 'evalu' but not 'eval'?" Without seeing the tokenizers you're using for the field type it's hard to say. You can use Solr's analysis page to see the tokens that are generated by the tokenizers in your analysis chain at both quer

Re: Solr logo for print

2012-04-30 Thread Dan Tuffery
Try this one: http://www.lucidimagination.com/sites/default/files/image/solr_logo_rgb.png Dan On Mon, Apr 30, 2012 at 8:38 PM, Otis Gospodnetic < otis_gospodne...@yahoo.com> wrote: > Hi, > > I'm trying to find a Solr logo in a vector or some other format suitable > for print. I found Lucene lo

Re: Java out of memory - with fieldcache faceting

2012-04-30 Thread Dan Tuffery
a way to know (some formula) what is the size of memory i need for > these actions? > > Thanks > Yuval > > On Mon, Apr 30, 2012 at 11:50, Dan Tuffery wrote: > > > You need to add more memory to the JVM that is running Solr: > > > > http://wiki.apache.org/solr

Re: Java out of memory - with fieldcache faceting

2012-04-30 Thread Dan Tuffery
You need to add more memory to the JVM that is running Solr: http://wiki.apache.org/solr/SolrPerformanceFactors#OutOfMemoryErrors Dan On Mon, Apr 30, 2012 at 9:43 AM, Yuval Dotan wrote: > Hi Guys > I have a problem and i need your assistance > I get an exception when doing field cache faceting

Re: can I use different tokenizer/analyzer for facet count query?

2012-04-25 Thread Dan Tuffery
If you use the KeywordTokenizer at index time too it should do what you want. If that is not possible create another field. Best practices for facet fields: Indexed, not Tokenized (KeywordTokenizer) Not stored On Wed, Apr 25, 2012 at 3:52 PM, sam ” wrote: > From wiki: > http://wiki.apache.org

Re: 'Error 404: missing core name in path' in Solr

2012-04-23 Thread Dan Tuffery
Looks like you need to select a core name on the admin UI before select search. Have a look in the solr.xml file in your solr home directory, what cores are defined? Solr is expecting the core name in the URL: http://localhost:8080/solr//admin/ On Mon, Apr 23

Re: How can I get the top term in solr?

2012-04-22 Thread Dan Tuffery
1) The TermsComponent will return the top terms: http://wiki.apache.org/solr/TermsComponent 2) Add 'debugQuery=on' to your query, look at the 'explain' section in the results to get information regarding how many times the term appears in the document (idf). On Fri, Apr 20, 2012 at 5:31 PM, neos