spring - Hibernate Search usage, when to use and why -
i have question, because today first time met , used hibernate search. can explain me adventages of using hibernate search jpa annotations, make sense use instead of spring data ( mean crud/jpa repositories )? when hibernate search profitable?
e.g. have simple springmvc webapp, users , events. user should able view lists of events on pages, sorting option.
he should able search specific events given "fields". in case should use crud/jpa repos or work hib search?
thank in advance!
there number of articles on this. example can found here. in interests of non-link answer should use hibernate search if majority of searching full text (fuzzy searches, wildcards, geospatial etc.) otherwise if you're more interested in db joins, sorts etc. use sql.
Comments
Post a Comment