Home | About | Sematext search-lucene.com search-hadoop.com
 Search Lucene and all its subprojects:

Switch to Threaded View
Lucene, mail # user - QueryParser, double quotes and wilcard inside the double quotes


Copy link to this message
-
Re: QueryParser, double quotes and wilcard inside the double quotes
Ian Lea 2012-07-03, 17:11
You can use the QueryParser proximity feature e.g. "foo test"~n where
n is the max distance you want them to be apart.  Or look at the
SpanQuery stuff e.g. SpanNearQuery.
--
Ian.
On Tue, Jul 3, 2012 at 4:59 PM, Jochen Hebbrecht
<[EMAIL PROTECTED]> wrote:
> Hi all,
>
> Imagine you have the following books which are indexed using Lucene
>
> book1 -> title: "foo bar test"
> book2 -> title: "foo barrr test"
> book3 -> title: "foo bar bar"
>
> I want to find book1 and book2 using the following query "foo * test". But
> if I pass this string to the QueryParser, the QueryParser seems to be
> searching for a literal '*' character.
> Any idea's how to fix this?
>
> Thanks!
> Jochen

---------------------------------------------------------------------