> There's a location with title: hortus rodondendrus > > This location is found using this query: > http://localhost:8983/solr/db/select/?indent=on&q=hortus&defType=dismax&qf=title_search^20.0 > But not when using this query: > http://localhost:8983/solr/db/select/?indent=on&q=hort&defType=dismax&qf=title_search^20.0 > > So, I believe my title value is not indexed the way I'd > like it to be > indexed. I think currently Im indexing it in full words, > but am not > tokenizing it per character...if that makes sense :)
> What should I add for this to be indexed in such a way that > word parts are > also found? The question is, do you want to retrieve that document, with the following queries too? h, ho, hor, hort, hortu. Or is there a special relation between just hortus and hort? For the former one, you can use * operator, e.g. &q=title_search:hort*&defType=lucene Please note that * is not supported by dismax. For the latter one you can use http://wiki.apache.org/solr/LanguageAnalysis#solr.StemmerOverrideFilterFactory to manually reduce hortus to hort.