Re: Release date for 1.9

2017-03-06 Thread Alexander Kiel
We also run Clojure 1.9-alpha with great success in production. Being alpha doesn't mean that it's buggy. It just means that the new stuff can still change. Am Dienstag, 28. Februar 2017 21:10:59 UTC+1 schrieb Dan Burton: > > Obligatory: "our team uses clojure-future-spec with clojure-1.8" --

Idiomatic way to return a single value from an async function

2014-11-10 Thread Alexander Kiel
Hi, what is the most idiomatic way to return a single value from an async function in Clojure? A: return a channel which conveys the result later; also closes the channel (defn f [x] (let [c (chan)] ; put result onto c and close c later c)) B: take a channel onto which the result is

Re: Type annonations in clojure.instant/print-date result in speedup of 3

2013-10-10 Thread Alexander Kiel
!default.jspa You can also click the Watch link (after logging in) if you want to be emailed of updates to the ticket's status. I can make no promises on when or if that might happen. Andy On Wed, Oct 9, 2013 at 10:47 AM, Alexander Kiel alexan...@gmx.netjavascript: wrote: Hi Andy

Type annonations in clojure.instant/print-date result in speedup of 3

2013-10-09 Thread Alexander Kiel
Hi, I have a web service returning edn representations containing many java.util.Date values. Using a profiler, one Hot Spot is inside the clojure.instant/print-date function. The relevant reflections warnings are: Reflection warning,

Re: Type annonations in clojure.instant/print-date result in speedup of 3

2013-10-09 Thread Alexander Kiel
your improvements into that patch. http://dev.clojure.org/jira/browse/CLJ-1080 Andy On Wed, Oct 9, 2013 at 8:57 AM, Alexander Kiel alexan...@gmx.netjavascript: wrote: Hi, I have a web service returning edn representations containing many java.util.Date values. Using a profiler