Supporting advanced search methods in a user interface

2012-08-16 Thread Mike O'Leary
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

Re: Supporting advanced search methods in a user interface

2012-08-16 Thread Jack Krupansky
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 advanced

advanced search

2006-10-13 Thread 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? -- Kindly Regards Tony ===

Re: advanced search

2006-10-13 Thread karl wettin
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-clause. It has

Re: advanced search

2006-10-13 Thread Terry Steichen
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,

Re: advanced search

2006-10-13 Thread Doron Cohen
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();