Changes between Version 10 and Version 11 of HibernateSearch


Ignore:
Timestamp:
Dec 1, 2008, 12:20:45 PM (16 years ago)
Author:
heikki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HibernateSearch

    v10 v11  
    1010=== Introduction ===
    1111
    12 Hibernate Search is a library that combines the strengths of full text search using [http://lucene.apache.org/java/docs/ Lucene] with [http://www.hibernate.org/ Hibernate]'s O/R mapping capabilities. Queries in Hibernate Search are expressed as wrappers around Lucene queries.
     12Hibernate Search is a library that combines the strengths of full text search using [http://lucene.apache.org/java/docs/ Lucene] with [http://www.hibernate.org/ Hibernate]'s O/R mapping capabilities. Queries in Hibernate Search are expressed as wrappers around Lucene queries. Hibernate Search seems to offer 2 principal advantages over directly using Lucene plus a database: (1) Lucene information (about the index, analyzers to be used, etc.) is expressed using annotations on the domain objects involved; and (2) synchronization (re-indexing) is automatically triggered when Hibernate makes a change to the database.
    1313
    1414----