HibernateSearch « Core « JPA Q&A





1. JPA HibernateSearch Projections    stackoverflow.com

I'm trying to use JPA with HibernateSearch. I used Example 5.3 in http://docs.jboss.org/hibernate/stable/search/reference/en/html/search-query.html. The results come out as expected. However, the data coming back is a huge graph. ...

2. (HibernateSearch) MultiFieldQueryParser different analyzer per field    stackoverflow.com

Some of my indexed fields use a Greek analyzer and I want to use an English analyzer for some other fields. My problem is: When searching for results (with a MultiFieldQueryParser ...

3. HibernateSearch with Spring2.5    forum.hibernate.org

4. HibernateSearch : RejectedExecutionException ( Solved )    forum.hibernate.org

Hi im using hibernate-search-3.1.1.GA with the following simple Code : @Indexed(index="tags") public class Tag { @DocumentId private int id; ... } hibernate.cfg : ... org.hibernate.search.store.FSDirectoryProvider lucene/indexes manual ... IndexUpdateCode : Session session = HibernateUtil.getSession(); session.setFlushMode(FlushMode.MANUAL); session.setCacheMode(CacheMode.IGNORE); FullTextSession fullTextSession = Search.getFullTextSession( session ); fullTextSession.purgeAll(Tag.class); for(Object o:fullTextSession.createCriteria(Tag.class).list()){ fullTextSession.index((Tag)o); } witch results in the following Exception : INFO: 2009-07-19 23:37:20,450 ERROR ...