This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-12-26
Channels
- # beginners (74)
- # cider (3)
- # cljsrn (1)
- # clojure (182)
- # clojure-dev (4)
- # clojure-europe (1)
- # clojure-spec (5)
- # clojure-uk (58)
- # clojurescript (44)
- # core-async (5)
- # core-logic (10)
- # cursive (6)
- # datomic (13)
- # duct (1)
- # fulcro (2)
- # graalvm (4)
- # leiningen (1)
- # off-topic (7)
- # overtone (6)
- # random (3)
- # re-frame (17)
- # reitit (2)
- # shadow-cljs (6)
- # spacemacs (4)
- # sql (12)
- # tools-deps (3)
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?
@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
Thanks!