Fork me on GitHub
#graalvm
<
2023-05-05
>
Karol Wójcik16:05:46

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.

souenzzo16:05:11

Why would you run datomic peer on native-image? Native image is not faster, it does not use less memory.

Karol Wójcik16:05:45

Hmm, I would like to query Datomic from my app and compile it all with native-image.

souenzzo16:05:21

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

👍 2
Karol Wójcik16:05:12

Okay. Thanks! Will do!