Hi!
I am evaluating Hibernate Search and is very please but for one exception and I really like to belive that I have made an error somehow.
It seems like no number is indexed. When trying to search for for them I don't get any answers while querying another column I get the words.
The field with the number is defined as (customer-number:
@Field(index = Index.UN_TOKENIZED, store = Store.NO)
@Boost(5f)
private String kundNr;
And the query is:
kundNr:12634
What could I have done wrong? When searching for this field:
@Field(index = Index.TOKENIZED, store = Store.NO)
private String namn;
namn:Santa
it works perfectly.
Thanks in advance
Roland Carlsson
Hibernate version:
3.2.1GA Hibernate
3.0.0GA Hibernate search
Database
Mysql 5.0.48
|