Looking for wildcards using a descriptor handler?

I have successfully indexed files and want to be able to search using wildcards. I am currently using the dismaxRequestHandler (QueryType = dismax) method to search, so that I can search all the fields for the query.

A general search such as "computer" returns results, but "com * er" does not return any results. Similary, a search similar to "co? Mput? R," yields no results.

Can someone please tell me how to continue using smax and be able to do wildcard searches in the q field? Does edismax handler have? If so, how to use it. I have Solr 1.4.1.

Please help me.

Thank.

Imran.

+5
source share
1 answer

Grab the latest (trunk) assembly from Hudson . Use <str name="defType">edismax</str>in RequestHandler to activate edismax.

+8
source

All Articles