Reputation: 27
I'm using datomic API for java Is there a way by which we can reload the datomic database using java or reload/refresh the database?
Upvotes: 0
Views: 38
Reputation: 6051
Usually calling Connection.db() will give you a fresh-enough result, but for stricter requirements you can use Connection.sync().
Upvotes: 0