Hibernate Team |
|
Joined: Sat Jan 24, 2009 12:46 pm Posts: 388
|
Hi,
have you checked out the discussion of the different backends in the reference guide [1]?
You could get started with the simple Lucene backend [2] which directly uses a shared index (also see [3] for locking options). If the shared index writes show up as bottleneck you could switch to the JMS backend [4] which performs all writes through a single node, serves reads from index copies and propagates index updates to the master node via JMS.
--Gunnar
[1] http://docs.jboss.org/hibernate/search/4.4/reference/en-US/html_single/#d0e633 [2] http://docs.jboss.org/hibernate/search/4.4/reference/en-US/html_single/#d0e644 [3] http://docs.jboss.org/hibernate/search/4.4/reference/en-US/html_single/#search-configuration-directory-lockfactories [4] http://docs.jboss.org/hibernate/search/4.4/reference/en-US/html_single/#d0e666
_________________ Visit my blog at http://musingsofaprogrammingaddict.blogspot.com/
|
|