Does anybody have an experience in making Datomic with DynamoDB persistance layer working under native-image? Blog posts or step by step tutorials much appreciated.
Why would you run datomic peer on native-image? Native image is not faster, it does not use less memory.
Hmm, I would like to query Datomic from my app and compile it all with native-image.
Native image is for short lived process Datomic peer is for long running. It will load the entire db into the memory in the first query. Use datomic-client-api from native image
Okay. Thanks! Will do!