--- On Tue, 10/5/10, Mark N <nipen.m...@gmail.com> wrote:

> From: Mark N <nipen.m...@gmail.com>
> 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
> "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"

But if you can append some artificial token to end of your field (client side 
maybe), you can use this plug-in for this task.  

Your modified documents/fields:

"this week END"
"Past three weeks END"
"Report weekly END"

Query "week* END" will return those three documents.




Reply via email to