Anyone can suggests how to do multiple partial word searching?
On Wed, Oct 20, 2010 at 11:42 AM, Chamnap Chhorn wrote:
> Hi,
>
> I have some problem with combining the query with multiple parital-word
> searching in dismax handler. In order to make multiple partial word
> s
Hi,
I have some problem with combining the query with multiple parital-word
searching in dismax handler. In order to make multiple partial word
searching, I use EdgeNGramFilterFactory, and my query must be something like
this: "name_ngram:sun name_ngram:hot" in q.alt combined with
Hi,
You can use wildcards but I suppose it would only work with one word (though
maybe if you use tokenization you could use something like "field:sun* AND
field:hot*")
You could also use N-grams to achieve partial searchs. For example, if you
use 3-grams for "hotel" you'll index "hot", "ote" and
> I'm quite new to solr 1.4. I have a requirement to be able
> to search partial
> words ("sun hot" => "Sunway Hotel") and to search full
> word("sunway hotel"
> => "Sunway Hotel"). Currently, I could be able to search
> only full word.
> Anyone has any suggestions?
Looks like a PrefixQuery. sun*
Hi everyone,
I'm quite new to solr 1.4. I have a requirement to be able to search partial
words ("sun hot" => "Sunway Hotel") and to search full word("sunway hotel"
=> "Sunway Hotel"). Currently, I could be able to search only full word.
Anyone has any suggestions?
--
Chhorn Chamnap
http://cham