Fork me on GitHub
#datomic
<
2019-09-03
>
Brian20:09:15

I'm just getting into Datomic and Datomic Cloud recently and I have a question on some theory/design of Datomic Cloud. I'm used to my database server having an api that we hit with requests. Would I essentially write lambdas for every type of query in the same way I'add add api endpoints on my old database?

souenzzo20:09:00

@brian.rogers no Probably you will use something like https://github.com/pedestal/pedestal.ions Export one lambda, make a ANY/* "proxy" API Gateway, then do all routing stuff in pedestal.

Joe Lane20:09:28

Or HTTP-Direct

ghadi20:09:40

you can also do a regular API server tier (not using Ions)

Brian20:09:46

Thank you all for the information! You've made me realize I have other things I need to look into before I know what to ask next