Correct me if i am wrong, but there seems to be no easy way to accomplish this goal.
I have been searching around and have not yet found any solution to this problem, it just seems to be that we are just supposed to store the index on a "standard" file system.
It seems that i have to use hibernate and lucene seperatly to accomplish this goal.. an article found here:
http://kalanir.blogspot.com/2008/06/cre ... abase.html explains how create indexes with pure lucene using "JdbcDirectory".
A hibernate search implementation of this JdbcDirectory thing would be sweet, something like : "org.hibernate.search.store.JdbcDirectoryProvider" where the index is created into the db with default values maybe, or some way to configure this...
Im not sure how this would have been implemented, nor if this is a good idea... So don't flame me :)
oh yes... and by removing :
hibernate.search.default.directory_provider=org.hibernate.search.store.FSDirectoryProvider it seems to be storing the data into the db, but the index still remains in the filesystem...
Best Regards