aws-lambda

mj_langford 2016-07-01T19:38:03.000031Z

not unless I write one

mj_langford 2016-07-01T19:38:24.000032Z

@juliobarros: are you going with cljs instead of java?

mj_langford 2016-07-01T19:38:36.000033Z

it’s not hard to keep the lambda function in cache with java

mj_langford 2016-07-01T19:38:50.000034Z

so it’s really fast, but if you want js libs, you want js libs so I could see going either way

2016-07-01T19:49:41.000035Z

@mj_langford: Sorry I think there was a typo or I wasn’t clear. I’d consider cljs or clj and was just trying to learn either/both and aws. cljs was fine to get started but was unclear how to use dynamodb and ses. They seemed to be better supported by the clj (java) libs.

mj_langford 2016-07-01T19:49:55.000036Z

Yeah, java is tons better supported

mj_langford 2016-07-01T19:50:25.000037Z

JVM based will require you to setup a 1 minute “pinger” call to your lambda function

mj_langford 2016-07-01T19:50:36.000038Z

if you use ring-aws-lambda-adapter

mj_langford 2016-07-01T19:50:49.000039Z

you can have your entire app use the same lambda function, and just be called by different paths

mj_langford 2016-07-01T19:50:54.000040Z

which compojure will decode alright

mj_langford 2016-07-01T19:51:15.000041Z

AWS is a beast

mj_langford 2016-07-01T19:51:33.000042Z

It took me basically 5 days to learn how to do this after experimenting with various ways

mj_langford 2016-07-01T19:51:41.000043Z

to get something industrial strength feeling

2016-07-01T19:55:04.000044Z

@mj_langford: … cant wait to read your write up. 😄