What triggers a full text index after bulk load

I'm looking into maintaining an auxiliary index like the Lucene index for full text search. I can see how you might maintain that with a transaction listener but I was wondering how Stardog kicks off the initial index build after a bulk insert on db creation. Is there some sort of call back that's registered or does the connectable just check to see if an index already exists and if it doesn't builds it.

The create method on the ConnectableFactory will be called when a new database is created. You can check out the example here:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.