Fork me on GitHub
#lambdaisland
<
2017-01-05
>
martinklepsch04:01:04

@dhruv1 the issue is that using macros you can reach into Clojure code at compile time but not at run time. So if you need to access the db connection during runtime you’ll need to come up with something else

martinklepsch04:01:18

e.g. HTTP, websockets, ...

dhruv120:01:26

@martinklepsch yeah that’s what I’m going to have to do. thanks