Monday, June 27, 2005
Searching and indexing with Hibernate
The simple way to search with a small data set is to use the "where" clause in HQL or to use Query or Criteria objects.
However, as the dataset becomes larger and larger we want the text fields searchable by indexing them.
One way of making your hibernate data searchable is using Apache's Lucene framework.
http://lucene.apache.org/java/docs/index.html
However, as the dataset becomes larger and larger we want the text fields searchable by indexing them.
One way of making your hibernate data searchable is using Apache's Lucene framework.
http://lucene.apache.org/java/docs/index.html