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

[ANN] missionary a.1

2018-06-03 Thread Léo Noel
Missionary is an asynchronous programming toolkit for clojure and clojurescript. https://github.com/leonoel/missionary Features include non-blocking synchronization primitives, coroutine syntax for sequential logic, parallel composition operators and timing helpers. Missionary relies on the task

How to cache deps with deps.edn, to speed docker image builds?

2018-06-03 Thread Jason Whitlark
When building docker images with lein, I frequently have a run lein.deps before building, to cache the deps in the image. I'm not clean on how to accomplish the same thing with deps.edn. Any suggestions? Cheers, ~Jason -- You received this message because you are subscribed to the Google Gro

Re: How to cache deps with deps.edn, to speed docker image builds?

2018-06-03 Thread Luke Burton
I have an outstanding pull request to add explicit copying of deps to a target folder (like lein libdir) to depstar: https://github.com/healthfinch/depstar/pull/3 (for esoteric reasons one of the places I deploy demands I use "thin jars" which is

Re: How to cache deps with deps.edn, to speed docker image builds?

2018-06-03 Thread Alex Miller
On Sunday, June 3, 2018 at 2:18:05 PM UTC-5, Luke Burton wrote: > > I have an outstanding pull request to add explicit copying of deps to a > target folder (like lein libdir) to depstar: > > https://github.com/healthfinch/depstar/pull/3 > > (for esoteric reasons one of the places I deploy demand

Re: How to cache deps with deps.edn, to speed docker image builds?

2018-06-03 Thread Luke Burton
> On Jun 3, 2018, at 2:55 PM, Alex Miller wrote: > > On Sunday, June 3, 2018 at 2:18:05 PM UTC-5, Luke Burton wrote: > I have an outstanding pull request to add explicit copying of deps to a > target folder (like lein libdir) to depstar: > > https://github.com/healthfinch/depstar/pull/3 >

Re: How to cache deps with deps.edn, to speed docker image builds?

2018-06-03 Thread Jason Whitlark
Yea, I'm experimenting with kubernetes patterns, and wanted to revisit use of deps.edn for them. Last time I searched for that, I didn't find much useful. Times have changed! Thanks! ~Jason On Sunday, June 3, 2018 at 4:00:54 PM UTC-7, Luke Burton wrote: > > > On Jun 3, 2018, at 2:55 PM, Alex