Hello,
I was wondering if there are any best practices (or if anybody has ever dealt with) using Zend_Search_Lucene in a clustered environment.
ZF manual states that:
Quote:
Zend_Search_Lucene uses flock() to provide concurrent searching, index updating and optimization.
According to the PHP documentation, "flock() will not work on NFS and many other networked file systems".
Do not use networked file systems with Zend_Search_Lucene.
|
Since NFS is out of the question, I can only think of rsyncing the indexes between all my webservers, but that seems plain weird.
Any suggestions?