Re: Search within words

2012-01-23 Thread Erick Erickson
Please provide more info. In particular what is the output when you attach &debugQuery=on? Best Erick On Mon, Jan 23, 2012 at 5:11 AM, Lee Carroll wrote: > check your defaultOperator, ensure its OR > > On 23 January 2012 05:56, jawedshamshedi wrote: >> Hi >> Thanks for the reply.. >> I am using

Re: Search within words

2012-01-23 Thread Lee Carroll
check your defaultOperator, ensure its OR On 23 January 2012 05:56, jawedshamshedi wrote: > Hi > Thanks for the reply.. > I am using NGramFilterFactory for this. But it's not working as desired. > Like I have a  field article_type that has been indexed using the below > mentioned field type. > >

Re: Search within words

2012-01-22 Thread jawedshamshedi
Hi Thanks for the reply.. I am using NGramFilterFactory for this. But it's not working as desired. Like I have a field article_type that has been indexed using the below mentioned field type. The field definition for indexing is : now the problem is that I have a

Re: Search within words

2012-01-20 Thread Otis Gospodnetic
Hello, You can accomplish this by using n-grams or edge n-grams, which you'll use as field types for fields where you want such matching to occur and that you will specify in schema.xml.  I hope this helps. Otis  Performance Monitoring SaaS for Solr - http://sematext.com/spm/solr-performa

Re: search within specific domain

2012-01-13 Thread Erick Erickson
This is all just adding the appropriate filter query (fq) on the query you generate I think.. Something like fq=url:(nytimes.com). Of course you have to have a url field that's appropriately analyzed for this to work like you want. Best Erick On Fri, Jan 13, 2012 at 9:46 AM, remi tassing wrote:

Re: Search within a subset of documents

2010-10-11 Thread Sergey Bartunov
And so I think. Actually I hope that I can do something like that: 1) tell the Solr to prepare for searching 2) start my very fast filtering routine 3) send asynchronoussly IDs of filtered documents to the Solr and expect that Solr is ranging them in the parallel 4) get the result quickly On 11 O

Re: Search within a subset of documents

2010-10-11 Thread Gora Mohanty
On Mon, Oct 11, 2010 at 8:20 PM, Sergey Bartunov wrote: > Whether it will be enough effective if the subset is really large? [...] If the subset of IDs is large, and disjoint (so that you cannot use ranges), the query might look ugly, but generating it should not be much of a problem if you are u

Re: Search within a subset of documents

2010-10-11 Thread Sergey Bartunov
Whether it will be enough effective if the subset is really large? On 11 October 2010 18:39, Gora Mohanty wrote: > On Mon, Oct 11, 2010 at 7:00 PM, Sergey Bartunov wrote: >> Is it possible to use Solr for searching within a subset of documents >> represented by enumeration of document IDs? > > C

Re: Search within a subset of documents

2010-10-11 Thread Gora Mohanty
On Mon, Oct 11, 2010 at 7:00 PM, Sergey Bartunov wrote: > Is it possible to use Solr for searching within a subset of documents > represented by enumeration of document IDs? Couldn't you add the document ID to the query, e.g., if the field is called id, you can use ?q=id:, e.g., ?q=id:1234? You c

Re: search within sentence or paragraph

2010-03-30 Thread Erik Hatcher
On Mar 30, 2010, at 12:36 PM, Ahmet Arslan wrote: Is it possible search for a combination of words within the same sentence or paragraph? Mark Miller's Qsol Parser can do that [1]. However it seems that temporarily it is not publicly available [2] [3]. [1]http://www.lucidimagination.co

Re: search within sentence or paragraph

2010-03-30 Thread Ahmet Arslan
> Is it possible search for a combination of words within the > same > sentence or paragraph? Mark Miller's Qsol Parser can do that [1]. However it seems that temporarily it is not publicly available [2] [3]. [1]http://www.lucidimagination.com/blog/2009/02/22/exploring-query-parsers/ [2]http:/

Re: Search Within

2009-04-04 Thread Shashi Kant
This post describes the search-within-search implementation. http://sujitpal.blogspot.com/2007/04/lucene-search-within-search-with.html Shashi On Sat, Apr 4, 2009 at 1:21 PM, Vernon Chapman wrote: > Bess, > > I think that might work I'll try it out and see how it works for my case. > > thanks

Re: Search Within

2009-04-04 Thread Vernon Chapman
Bess, I think that might work I'll try it out and see how it works for my case. thanks Bess Sadler wrote: Hi, Vernon. In Blacklight, the way we've been doing this is just to stack queries on top of each other. It's a conceptual shift from the way one might think about "search within", but i

Re: Search Within

2009-04-04 Thread Bess Sadler
Hi, Vernon. In Blacklight, the way we've been doing this is just to stack queries on top of each other. It's a conceptual shift from the way one might think about "search within", but it accomplishes the same thing. For example: search1 ==> q=horse search2 ==> q=horse AND dog The second