It is very resticitive in an application that has multiple indexes to only allow the disabling of automatic indexing on an application wide level (or at least SessionFactory wide...). I can see it being very useful to have auto indexing on a per index basis.
Also, it would be nice to be able to turn auto indexing off and on programmatically using something like
{code} Search.setAutoIndexing("myIndex", false); //per index {code} and
{code} Search.setAutoIndexing(false); //global {code}
|