Hi, I am using lucene's standard analyser to search, however, the search result is case sensitive. e.g, when i search for "database", "DATABASE" could not return.
I could store the typed items as lowercase, and store the stored data as lowercase as well, but in this case, the returned results would be lower case, instead of the original form. e.g, the returned results would be "database" instead of "DATABASE". Any ideas? Wen