Fork me on GitHub
#graalvm
<
2019-12-26
>
jaihindhreddy04:12:31

I'm looking to write a lambda that consumes from AWS SQS and sends email via AWS SES. Because SES rate-limits sending. I want to throttle the sending using core.async Does core.async work with native image? Or is going with ClojureScript better here?

borkdude07:12:57

@jaihindhreddy I have core.async in babashka. It works, except the go macro, but I haven’t tried it in normal GraalVM compiled projects, so the go macro might just work there. Babashka is an interpreter which makes it a little bit more complicated when it comes to macros

borkdude07:12:40

But all the double exclamation marks work

👍 4