data « Search « JPA Q&A





1. indexing data in Hibernate Search    stackoverflow.com

I just start integrate Hibernate Search with my hibernate application. The data is indexed by using Hibernate Session everytime i start the server.

FullTextSession fullTextSession = Search.getFullTextSession(session);
Transaction tx = fullTextSession.beginTransaction();

List books ...

2. Hibernate Search and massive data retrieval?    forum.hibernate.org

Hibernate Search version: 3.0.0.GA I'm working on a project that need to implement an Advanced Search. The number of search criterias may vary from 4 to 50 in the same query that may result to massive data retrieval when pagination is not used in some specific contexts. Considering the Database is normalized to 3NF and we wish to treat as many ...