Message-
From: Mike O'Leary
Sent: Thursday, August 16, 2012 2:18 PM
To: Lucene User List (java-user@lucene.apache.org)
Subject: Supporting advanced search methods in a user interface
I would like to know if anyone has ideas (or pointers to discussions) about
good ways to support adv
I would like to know if anyone has ideas (or pointers to discussions) about
good ways to support advanced search options, such as the various kinds of
SpanQuery, in a search application user interface that is understandable to
non-expert users.
Thanks,
Mike
Terry Steichen <[EMAIL PROTECTED]> wrote on 13/10/2006 08:01:11:
> You can just add a field to your indexed docs that always evaluates to a
> fixed value. Then you can do queries like: +doc:1 -id:test
Alternatively you can use MatchAllDocsQuery, e.g.
BooleanQuery bq = new BooleanQuery();
You can just add a field to your indexed docs that always evaluates to a
fixed value. Then you can do queries like: +doc:1 -id:test
karl wettin wrote:
13 okt 2006 kl. 09.59 skrev tony yin:
I wanta search several fields use NOT condition, but how?
for example:
I store "test" in {"id", "name"
13 okt 2006 kl. 09.59 skrev tony yin:
I wanta search several fields use NOT condition, but how?
for example:
I store "test" in {"id", "name", "value", ...} fields.
now I search "test" NOT in "id". That's it.
Can anyone help me?
You will not get any matchs looking for just a boolean NOT-claus
I wanta search several fields use NOT condition, but how?
for example:
I store "test" in {"id", "name", "value", ...} fields.
now I search "test" NOT in "id". That's it.
Can anyone help me?
--
Kindly Regards
Tony
===