You need to look carefully at your schema.xml. There are plenty of comments in that file describing what's going on. That's where you set up your analyzers by chaining together various tokenizers and filters.
I think you're confused about indexing and storing. Generally it's a bad practice to allow your searching to be case sensitive. Indexed data is the data that's searched, and lowercasing that is generally a good idea. Stored data, on the other hand, is stored and retrieved as is, no transformations are performed at all. However, the stored isn't used to search, it's only there so you can retrieve the text and show the user. For instance, if you both INDEX and STORE a field and add "This text WORKED very well", the indexed tokens might be very different, e.g. "text" "work" "very" "well" might be all that's indexed and searched (lowercased, stopwords removed, stemmed". However, if you return the field you would see "This text WORKED very well". HTH Erick On Wed, Jul 7, 2010 at 9:06 AM, Robert Naczinski < robert.naczin...@googlemail.com> wrote: > Hi, > > thanks for the help. The search is working now. Now I would like to > find documents using upercases. Now I have to look everything over > lowercases. > > Where can I set QueryParser and WordAnalyser? > > I added the configuration files as attachment. > > Regards, > > Robert > > 2010/7/7 Erick Erickson <erickerick...@gmail.com>: > > &debugQuery=on >