• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hibernate Search in Action - A Framework

 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does this book talk about a kind of a framework for doing search operations in Hibernate?
[ December 09, 2008: Message edited by: Jothi Shankar Kumar Sankararaj ]
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes. Specifically it talks about Hibernate Search.
 
Ranch Hand
Posts: 198
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Hibernate is a framework which provides a solution for object relational mapping and a persistence management solution or persistent layer." - Sebastian Hennebrueder
More knowledge can be made at this site: http://www.laliluna.de/what-is-hibernate.html
 
Joe San
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by sreerupa basu:
"Hibernate is a framework which provides a solution for object relational mapping and a persistence management solution or persistent layer." - Sebastian Hennebrueder
More knowledge can be made at this site: http://www.laliluna.de/what-is-hibernate.html



Are you teaching me Hibernate? I have worked with it quite a lot before.
 
author
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The book covers Hibernate Search which let's you write full-text queries (ie "Google-like" queries) for data represented by your domain model.
It does so in a way that make it look like executing a query using your classic HQL. It keeps the Lucene index and the database synchronized and also helps to cluster Lucene applications (within the Hibernate Search world).
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic