Re: Solr Search - Issue

2017-02-14 Thread Alexandre Rafalovitch
Where do the sentence boundaries come from? Solr would not be able to automatically identify those, but if you can feed this text as a multi-valued field with each sentence separate, you may be able to use something like SurroundQueryParser: https://cwiki.apache.org/confluence/display/solr/Other+Pa

Re: SOLR - Search Issue

2012-11-12 Thread Otis Gospodnetic
You can issue an optimize request to Solr, just peek at the Wiki. IndexUpgrader is a command-line tool. No coding needed (tm) Otis -- Search Analytics - http://sematext.com/search-analytics/index.html Performance Monitoring - http://sematext.com/spm/index.html On Mon, Nov 12, 2012 at 11:59 PM,

Re: SOLR - Search Issue

2012-11-12 Thread ravi.n
Thanks. Can be this done by Solr or should we write Java class? Regards, Ravi -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-Search-Issue-tp4019816p4019939.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: SOLR - Search Issue

2012-11-12 Thread Otis Gospodnetic
Hi, Have you tried optimizing your indices? That should upgrade their format to whatever Solr/Lucene version you are using. You could also try IndexUpgrader - http://search-lucene.com/jd/lucene/core/org/apache/lucene/index/IndexUpgrader.html Otis -- Search Analytics - http://sematext.com/search

Re: solr search issue

2012-11-03 Thread Erick Erickson
ingapore > Blk 1022 Tai Seng Avenue #06-3530 > Tai Seng Ind. Est. Singapore 534415 > DID: (65) 6550 5383 FAX: (65) 6550 5459 > email: romita.s...@sg.panasonic.com > > > > From: Erick Erickson > To: solr-user@lucene.apache.org, > Date: 11/02/2012 02:42 PM >

Re: solr search issue

2012-11-02 Thread Jack Krupansky
more terms), then you will get ALL documents that match ANY of the terms. If you want ONLY the documents that match ALL of the terms, set the default query operator (q.op) to "AND". -- Jack Krupansky -Original Message- From: Romita Saha Sent: Friday, November 02, 2012 4:01

Re: solr search issue

2012-11-02 Thread Romita Saha
From: Erick Erickson To: solr-user@lucene.apache.org, Date: 11/02/2012 02:42 PM Subject:Re: solr search issue First, define a "free text search". If what you're after is that your terms (i.e. q=term1 term2) get spread across multiple fields, simply add them to yo

Re: solr search issue

2012-11-01 Thread Erick Erickson
> From: Gora Mohanty > To: solr-user@lucene.apache.org, > Date: 11/02/2012 12:36 PM > Subject:Re: solr search issue > > > > On 2 November 2012 09:51, Romita Saha > wrote: > > > > Hi, > > > > I am trying to search a database . In my

Re: solr search issue

2012-11-01 Thread Romita Saha
Hi, Thank you for your reply. What if I want to do a free text search? Thanks and regards, Romita From: Gora Mohanty To: solr-user@lucene.apache.org, Date: 11/02/2012 12:36 PM Subject:Re: solr search issue On 2 November 2012 09:51, Romita Saha wrote: > > Hi, &g

Re: solr search issue

2012-11-01 Thread Gora Mohanty
On 2 November 2012 09:51, Romita Saha wrote: > > Hi, > > I am trying to search a database . In my database I have a field level2. > > My query: > http://localhost:8983/solr/db/select/?defType=dismax&q=search%20level2&qf=data%20id^2%20&start=0&rows=11&fl=data,id Where did you get this syntax from?