Re: [ANN] Leiningen template aws-lambda-serverless

2018-06-03 Thread Juha Syrjälä
Using this template will not affect startup times. It just makes development and deployment easier. Here are couple of benchmarks for Node and Java: - https://medium.com/@nathan.malishev/lambda-cold-starts-language-comparison-%EF%B8%8F-a4f4b5f16a62 - https://read.acloud.guru/comparing-aws-lambd

Re: [ANN] Leiningen template aws-lambda-serverless

2018-06-02 Thread Daniel Carleton
GraalVM is promising for the startup time issue. Here's a demonstration: https://github.com/uwcpdx/clombda On Sat, Jun 2, 2018 at 3:09 PM Moe Aboulkheir wrote: > There's some casual treatment of performance in this blog post: > https://nervous.io/clojure/clojurescript/aws/lambda/node/lein/2015/

Re: [ANN] Leiningen template aws-lambda-serverless

2018-06-02 Thread Moe Aboulkheir
There's some casual treatment of performance in this blog post: https://nervous.io/clojure/clojurescript/aws/lambda/node/lein/2015/07/05/lambda/ For those interested in cljs, https://github.com/nervous-systems/serverless-cljs-plugin permits the deployment of cljs projects via sls. Take care, Moe

Re: [ANN] Leiningen template aws-lambda-serverless

2018-06-02 Thread Jason Kapp
Cool. I haven't looked at Lambda for a while. I recall that there was a slow startup time issue using a JVM based Lambda so someone was using ClojureScript because Node.js had faster startup time. Is startup time an issue with this? On Friday, June 1, 2018 at 9:58:47 AM UTC-6, Juha Syrjälä wrot

[ANN] Leiningen template aws-lambda-serverless

2018-06-01 Thread Juha Syrjälä
Announcing a Leiningen template for creating Clojure based AWS Lambda projects using Serverless -framework. The template sets up a project where you can just add the Clojure code. Usage: lein new aws-lambda-serverless my-project ... coding ... lein uberjar serverless deploy --stage dev Referenc