Sam
Sam

Reputation: 27

Datomic connection reload using java

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

Answers (1)

Valentin Waeselynck
Valentin Waeselynck

Reputation: 6051

Usually calling Connection.db() will give you a fresh-enough result, but for stricter requirements you can use Connection.sync().

Upvotes: 0

Related Questions