Quote:
Is the exclusive_index_use a new concept? I'm not finding it in my classpath.
it's a new configuration option, Search for it on the
latest reference documentationQuote:
I have several daemons as well as an app that are all currently creating indexes. Even though the daemons are generating entities and thus generating indexes, I don't really require the indexes that would be generated by the daemons as they are leaf nodes and not part of the object graph that would actual be searched.
you should make sure that each index is written by only one Search instance to avoid contention timeouts. Remember that each entity can be configured to write to a different index, so in your described scenario it would be fine to enable that option if you can check for exclusive access (if you're sure that each daemon writes a different type of object)
Quote:
Based on the versions I'm currently using, is it possible to configure my daemons to NOT rewrite indexes but let the app keep writing them?
not sure what your daemons do, but you could setup the master/slave approach as described on reference, so that you have only one master application which writes to the indexes. In version 3.2 we added a JGroups transport for master/slave, in addition to the JMS transport.
Quote:
Also, If I can do this, then I'm curious if I can do something similar to "exclusive_index_use" in the versions that I'm using
no