Hi,
I am a Hibernate beginner and am currently using fullTextEntityManager.createIndexer().startAndWait() to build the intial index of existing entities in my database. My problem is, that while this is running new entities are created in the database and these are of course not indexed. (the application does currently not have a maintenance mode)
What is the best approach to add entities to the index which are created while the inital build/rebuild of indexes is taking place? Should I be using another form of doing an intials build/rebuild? If so, could you point me to an example?
|