Aren't wildcards case sensitive? Check the FAQ.
Otis
--- Rob Outar <[EMAIL PROTECTED]> wrote:
> Thanks for all the good information/advice everyone, have one more
> little
> thing, below is my analyzer:
>
> public TokenStream tokenStream(String field, final Reader reader) {
> // do not tokenize any field
> TokenStream t = new CharTokenizer(reader) {
> protected boolean isTokenChar(char c) {
> return true;
> }
> };
> //case insensitive search
> t = new LowerCaseFilter(t);
> return t;
> }
>
> Field name = releaseability Value = "Test Releaseability";
>
> How the field is set up:
>
> doc.add(new Field("releaseability", "Test Releaseability", true,
> true,
> true));
>
> This query works:
>
> releaseability:Test*
>
> however this one does not:
>
> releaseability:Test R*
>
> Any ideas why?
>
> Thanks,
>
> Rob
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
__________________________________________________
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>