Re: Synonyms problem

2013-04-03 Thread Shawn Heisey
On 3/29/2013 12:14 PM, Plamen Mihaylov wrote: Can I ask you another question: I have Magento + Solr and have a requirement to create an admin magento module, where I can add/remove synonyms dynamically. Is this possible? I searched google but it seems not possible. If you change the synonym

Synonyms problem

2013-03-29 Thread Plamen Mihaylov
Hey guys, I have the following problem - I have a website with sport players, where using Solr indexing their data. I have defined synonyms like: NY, New York. When I search for New York - there are 145 results found, but when I search for NY - there are 142 results found. Why there is a diff and

Re: Synonyms problem

2013-03-29 Thread Thomas Krämer | ontopica
Hi Plamen You should set expand to true during analyzer type=index filter class=solr.SynonymFilterFactory synonyms=index_synonyms.txt ignoreCase=true expand=true/ ... Greetings, Thomas Am 29.03.2013 17:16, schrieb Plamen Mihaylov: Hey guys, I have the following

Re: Synonyms problem

2013-03-29 Thread Walter Underwood
Also, all the filters need to be after the tokenizer. There are two synonym filters specified, one before the tokenizer and one after. I'm surprised that works at all. Shouldn't that be fatal error when loading the config? wunder On Mar 29, 2013, at 9:33 AM, Thomas Krämer | ontopica wrote:

Re: Synonyms problem

2013-03-29 Thread Steve Rowe
The XPath expressions used to collect the charFilter sequence, the tokenizer, and the token filter sequence are evaluated independently of each other - see line #244 through #251:

Re: Synonyms problem

2013-03-29 Thread Plamen Mihaylov
Guys, This is a commented line where expand is false. I moved the synonym filter after tokenizer, but the result is the same. Actual configuration: fieldType name=text class=solr.TextField positionIncrementGap=100 analyzer type=index tokenizer

Re: Synonyms problem

2013-03-29 Thread Walter Underwood
There are several problems with this config. Indexing uses the phonetic filter, but query does not. This almost guarantees that nothing will match. Numbers could match, if the filter passes them. Query time has two stopword filters with different lists. Indexing only has one. This isn't fatal,

Re: Synonyms problem

2013-03-29 Thread Plamen Mihaylov
Thank you a lot, Walter. I removed most of the filters and now it returns the same number of results. It looks simply this way: fieldType name=text class=solr.TextField positionIncrementGap=100 analyzer type=index tokenizer class=solr.WhitespaceTokenizerFactory

Synonyms problem

2011-09-07 Thread roySolr
for high school Lissabon but in my index it is tokenized on whitespace, still no results. I'm stuck, can someone help me?? Thanks R -- View this message in context: http://lucene.472066.n3.nabble.com/Synonyms-problem-tp3316287p3316287.html Sent from the Solr - User mailing list archive

Re: Synonyms problem

2011-09-07 Thread Ahmet Arslan
-- View this message in context: http://lucene.472066.n3.nabble.com/Synonyms-problem-tp3316287p3316287.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: synonyms problem

2011-06-06 Thread Erick Erickson
: http://lucene.472066.n3.nabble.com/synonyms-problem-tp3014006p3028353.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: synonyms problem

2011-06-06 Thread deniz
.472066.n3.nabble.com/synonyms-problem-tp3014006p3032666.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: synonyms problem

2011-06-05 Thread deniz
about solr in java? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/synonyms-problem-tp3014006p3028353.html Sent from the Solr - User mailing list archive at Nabble.com.

synonyms problem

2011-06-02 Thread deniz
expand=true/ /analyzer /fieldType but somehow synonyms are not read... I mean there is no match when i use a word in the synonym file... any ideas? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/synonyms-problem

Re: synonyms problem

2011-06-02 Thread Gora Mohanty
On Thu, Jun 2, 2011 at 11:58 AM, deniz denizdurmu...@gmail.com wrote: Hi all, here is a piece from my solfconfig: [...] but somehow synonyms are not read... I mean there is no match when i use a word in the synonym file... any ideas? [...] Please provide further details, e.g., is your field

Re: synonyms problem

2011-06-02 Thread lee carroll
Deniz, it looks like you are missing an index anlayzer ? or have you removed that for brevity ? lee c On 2 June 2011 10:41, Gora Mohanty g...@mimirtech.com wrote: On Thu, Jun 2, 2011 at 11:58 AM, deniz denizdurmu...@gmail.com wrote: Hi all, here is a piece from my solfconfig: [...] but

Re: synonyms problem

2011-06-02 Thread lee carroll
oh and its a string field change this to be text if you need analysis class=solr.StrField lee c On 2 June 2011 11:45, lee carroll lee.a.carr...@googlemail.com wrote: Deniz, it looks like you are missing an index anlayzer ? or have you removed that for brevity ? lee c On 2 June 2011

Re: synonyms problem

2011-06-02 Thread François Schiettecatte
but somehow synonyms are not read... I mean there is no match when i use a word in the synonym file... any ideas? - Zeki ama calismiyor... Calissa yapar... -- View this message in context: http://lucene.472066.n3.nabble.com/synonyms-problem-tp3014006p3014006.html Sent from the Solr - User

Re: synonyms problem

2011-06-02 Thread deniz
in context: http://lucene.472066.n3.nabble.com/synonyms-problem-tp3014006p3018185.html Sent from the Solr - User mailing list archive at Nabble.com.

synonyms problem

2010-03-22 Thread michaelnazaruk
,irregular,atypical I get exception that not enough memory -- View this message in context: http://old.nabble.com/synonyms-problem-tp27987378p27987378.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: synonyms problem

2010-03-22 Thread Armando Ota
Have you tried increasing memory size ? we had some out of memory problems when we used default memory size .. Kind regards Armando michaelnazaruk wrote: Hi all! I have a little problem with synonyms: when I set my synonyms.txt file such as:

Re: synonyms problem

2010-03-22 Thread Lance Norskog
How large is the document, and how often does 'aberrant' appear in it? Are the other words also in the document? What is the full analysis stack? There might be interactions between the SynonymFilter and other filters. What does the admin/analysis.jsp page show? Does it throw OutOfMemory also?