Re: wildcard and proximity searches

2010-10-05 Thread Ahmet Arslan
--- On Tue, 10/5/10, Mark N wrote: > From: Mark N > Subject: Re: wildcard and proximity searches > To: solr-user@lucene.apache.org > Date: Tuesday, October 5, 2010, 2:30 PM > Thanks ahmet > > Is it also possible to search the document having a  > field ENDING with >

Re: wildcard and proximity searches

2010-10-05 Thread Ahmet Arslan
> Is it also possible to search the document having a  > field ENDING with > "week*" > > query should return documents with a field ending > with  week and its > derivatives such as weekly,weeks > > So above query should return > > "this week" > "Past three weeks" > "Report weekly" No this is n

Re: wildcard and proximity searches

2010-10-05 Thread Mark N
Thanks ahmet Is it also possible to search the document having a field ENDING with "week*" query should return documents with a field ending with week and its derivatives such as weekly,weeks So above query should return "this week" "Past three weeks" "Report weekly" thanks chandan On Tue

Re: wildcard and proximity searches

2010-10-05 Thread Ahmet Arslan
> Also does this plugin allow us to use proximity with wild > card > *          "solr mail*"~10 * > Yes it supports "solr mail*"~10 kind of queries without any problem. Currently it throws exception with "mail*" kind of queries, but they are not valid phrase queries. Because there is only one

RE: wildcard and proximity searches

2010-10-05 Thread Frederico Azeiteiro
010 11:29 Para: solr-user@lucene.apache.org Assunto: Re: wildcard and proximity searches Hi were you successful in trying SOLR -1604 to allow wild card queries in phrases ? Also does this plugin allow us to use proximity with wild card * "solr mail*"~10 * If this the right ap

Re: wildcard and proximity searches

2010-10-05 Thread Mark N
; From: Jonathan Rochkind [mailto:rochk...@jhu.edu] > Sent: quarta-feira, 4 de Agosto de 2010 01:41 > To: solr-user@lucene.apache.org > Subject: Re: wildcard and proximity searches > > Frederico Azeiteiro wrote: > > > >>> But it is unusual to use both leading and

RE: wildcard and proximity searches

2010-08-04 Thread Frederico Azeiteiro
rd3". After this is working, I'll try to optimize the "heavy queries" Frederico -Original Message- From: Jonathan Rochkind [mailto:rochk...@jhu.edu] Sent: quarta-feira, 4 de Agosto de 2010 01:41 To: solr-user@lucene.apache.org Subject: Re: wildcard and proximity searche

Re: wildcard and proximity searches

2010-08-03 Thread Jonathan Rochkind
Frederico Azeiteiro wrote: But it is unusual to use both leading and trailing * operator. Why are you doing this? Yes I know, but I have a few queries that need this. I'll try the "ReversedWildcardFilterFactory". ReverseWildcardFilter will help leading wildcard, but will not h

RE: wildcard and proximity searches

2010-07-30 Thread Frederico Azeiteiro
feedback. Thanks for your help and sorry for my newbie confusions. :) Frederico -----Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: sexta-feira, 30 de Julho de 2010 12:09 To: solr-user@lucene.apache.org Subject: RE: wildcard and proximity searches > a) I think wil

RE: wildcard and proximity searches

2010-07-30 Thread Ahmet Arslan
> a) I think wildcard search is by default "case sensitive"? > Is there a > way to make case insensitive? Wildcard searches are not analyzed. To case insensitive search you can lowercase query terms at client side. (with using lowercasefilter at index time) e.g. Mail* => mail* > I discovered

RE: wildcard and proximity searches

2010-07-30 Thread Frederico Azeiteiro
thank you for your help... Frederico -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com] Sent: sexta-feira, 30 de Julho de 2010 10:57 To: solr-user@lucene.apache.org Subject: Re: wildcard and proximity searches > What approach shoud I use to perform wildcard and proxim

Re: wildcard and proximity searches

2010-07-30 Thread Ahmet Arslan
> What approach shoud I use to perform wildcard and proximity > searches? > > > > Like: "solr mail*"~10 > > > > For getting docs where solr is within 10 words of "mailing" > for > instance? You can do it with the plug-in described here: https://issues.apache.org/jira/browse/SOLR-1604 It