Re: synonyms not working

2013-09-11 Thread cheops
thanx for your help. could solve the problem meanwhile! i used ...which is wrong, it must be -- View this message in context: http://lucene.472066.n3.nabble.com/synonyms-not-working-tp4089318p4089345.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: synonyms not working

2013-09-11 Thread Erick Erickson
Attach &debug=query to your URL and inspect the parsed query, you should be seeing the substitutions if you're configured correctly. Multi-word synonyms at query time have the "getting through the query parser" problem. Best Erick On Wed, Sep 11, 2013 at 11:04 AM, cheops wrote: > Hi, > I'm usi

Re: Synonyms Not Working when using SRC & DEST

2011-09-07 Thread balaji
> So, if instead of: > > allergy test => Doctors, Doctors-Medical, PHYSICIANS, Physicians & > Surgeons > > You specified > > > allergy test => allergy test, Doctors, Doctors-Medical, PHYSICIANS, > Physicians & Surgeons > > I followed the above approach " allergy test => allergy test, Doctors,

RE: Synonyms Not Working when using SRC & DEST

2011-09-07 Thread Jaeger, Jay - DOT
age- From: balaji [mailto:mcabal...@gmail.com] Sent: Tuesday, September 06, 2011 7:48 PM To: solr-user@lucene.apache.org Subject: Re: Synonyms Not Working when using SRC & DEST > It won't work given your current schema. To get the desired results, you > would need to expand your syn

RE: Synonyms Not Working when using SRC & DEST

2011-09-07 Thread Jaeger, Jay - DOT
rrent client search threads sending HTTP search requests (done in perl) we averaged about .50 seconds per request, or over 55,000 searches per hour. JRJ -Original Message- From: balaji [mailto:mcabal...@gmail.com] Sent: Tuesday, September 06, 2011 7:48 PM To: solr-user@lucene.apache.or

Re: Synonyms Not Working when using SRC & DEST

2011-09-06 Thread balaji
> It won't work given your current schema. To get the desired results, you > would need to expand your synonyms at both index AND query time. Right now > your schema seems to specify it only at index time. > I have a very huge schema spanning up to 10K lines , if I use query time it will be huge

RE: Synonyms Not Working when using SRC & DEST

2011-09-06 Thread Jaeger, Jay - DOT
d get expanded during a search, and hit the documents with Doctors, etc. JRJ -Original Message- From: balaji [mailto:mcabal...@gmail.com] Sent: Tuesday, September 06, 2011 12:24 PM To: solr-user@lucene.apache.org Subject: Re: Synonyms Not Working when using SRC & DEST Hi Chris

Re: Synonyms Not Working when using SRC & DEST

2011-09-06 Thread balaji
Hi Chris The Terms Doctors , Doctors-Medical are all present in my Document body, title fields etc.. but Allergy Test is not . So what I am doing in synonym file is if a user searches for allergy test bring me results that match Doctors etc.. i.e Explicit mappings match any token sequence on

Re: Synonyms Not Working when using SRC & DEST

2011-09-06 Thread Chris Hostetter
: *allergy test => Doctors, Doctors-Medical, PHYSICIANS, Physicians & : Surgeons .. : ... : ... : But when I do a search for allergy , I get 0 results You've configured your field so that any time the terms "allergy" and "test" appear in sequence in a field value you

Re: synonyms not working with copyfield

2010-05-17 Thread Chris Hostetter
: fields during indexing. However, my search interface is just a text : box like Google and I need to take the query and return only those : documents that match ALL terms in the query and if I am going to take as mentioned previously in this thread: this is exactly what the dismax QParser was d

Re: synonyms not working with copyfield

2010-05-13 Thread Nick Martin
> the query analysis has to "make sense" for the index analysis, so it has >> to be consistent. >> >> >> >> -Hoss >> >> >> >> ________ >> View message @ >> http://lucene.472066.n3.nabble.com/synonyms-not-working-with-copyfield-tp814

Re: synonyms not working with copyfield

2010-05-13 Thread surajit
gt; > > View message @ > http://lucene.472066.n3.nabble.com/synonyms-not-working-with-copyfield-tp814108p815302.html > To unsubscribe from Re: synonyms not working with copyfield, click here. > -- View this message in context: http://lucene.472066.n3.

Re: synonyms not working with copyfield

2010-05-13 Thread Chris Hostetter
: which is good, but the different fields that I copy into the copyfield need : different analysis and I no longer am able to do that. I can, of course, Fundementally, Solr can only apply a single analysis chain to all of the text in a given field -- regardless of where it may be copied from. i

Re: synonyms not working with copyfield

2010-05-13 Thread Sachin
take a look at the DismaxRequestHandler: http://wiki.apache.org/solr/DisMaxRequestHandler -Original Message- From: surajit To: solr-user@lucene.apache.org Sent: Thu, May 13, 2010 9:52 pm Subject: Re: synonyms not working with copyfield Thanks much! I added a synonym

Re: synonyms not working with copyfield

2010-05-13 Thread surajit
Thanks much! I added a synonym filter to the copyfield and it started working which is good, but the different fields that I copy into the copyfield need different analysis and I no longer am able to do that. I can, of course, search against the individual fields instead of the copyfield, but I wa

Re: synonyms not working with copyfield

2010-05-13 Thread Ahmet Arslan
> I have indexed person names in solr using synonym expansion > and am getting a > match when I explicitly use that field in my query > (name:query). However, > when I copy that field into another field using copyfield > and search on that > field, I don't get a match. Below are excerpts from > sch

Re: synonyms not working with copyfield

2010-05-13 Thread Gary
Hi Surajit I aint sure if this is any help, but I had a similar problem but with stop words, they were not working with dismax queries. Well to cut a long story it seems that all the querying fields need to be configured with stopwords. Maybe this has the similar affect with Synonyms confguratio