문제

I have a web project and I just want to learn that Do I need to use Hibernate Search? I did some research and everybody says Hibernate Search is decreasing query times but I don't get then why everybody doesn't use Hibernate Search. My project is some kind of student information system.

도움이 되었습니까?

해결책

Hibernate search is an hibernate plugin for full text indexation (using apache lucene) of some domain entities attributes. it will not decrease relational query execution time but will allow to query your model to search some occurrence of a given word (querying an index is indeed much more faster than querying about all your database content using 'like' restriction).

If you don't have full-text indexation problematic, you don't need to use hibernate-search.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top