Hi there!
I have a simple doubt about "when" the Hibernate Search "must" access the database.
For instance,
Here I prepare the query:
Code:
FullTextSession LuceneSession = Search.createFullTextSession(hibernateSession);
FullTextQuery fullTextQuery = LuceneSession.createFullTextQuery(LuceneQuery);
And here I get the result:
Code:
List myResult = fullTextQuery.list();
When the Hibernate Search returns the result, it
must access the database to bring some other attributes of the entity or is there a way to avoid this (indexing them, for example)?
Thank you very much,
Rondon