Quote:
To be honest I would prefer Hibernate Search but the reference is in my opinion blurry and leaves to many questions and I am kind of a perfectionist and need to know how and what stuff is. I got scared and choose postgres which honestly is VERY easy to use + that their reference is very explanatory.
I am intrigued. Maybe you can help us improve the documentation? What exactly is so confusing and which information did you miss? Have you tried the quickstart section to get an introduction into the basic features?
If the online documentation is not enough you should get a copy of "Hibernate Search in Action". It contains all you need to know about Hibernate and Lucene and it also looks under the hood.
Quote:
I think generally that hibernate reference is to splitted and in too many places. But it might just be me :)
Can you give some concrete examples?
Quote:
I was thinking of searching my text with postgres first. Getting the ids wich is a very easy query.
And then use HQL / Criteria to match against all other fields in where the ids are the same as the ones returned by fulltext search.. not good ?
This is of course a valid approach. However, you will have to go twice to the database - once for the fulltext query and once for retrieving the objects. With Hibernate Search you only have one database access. Admittedly, you also have a Lucene search, but this happens in the same JVM.
--Hardy