Ivar Refsdal

Results 35 comments of Ivar Refsdal

I ended up creating a small project for extending `java.util.Date` and implementing `clojure.lang.IObj` for this task: https://github.com/ivarref/datewrapper That solves my problem (but not the general case) ...

Hi @rborer Did you ever progress further on this issue or conclude with something? I've recently had an OOM issue with aleph, and thanks to your previous issues I've upgraded...

@Yneth For my case it turned out that dirigiste, but some other problem that caused the OOM. I switched away from dirigiste anyway. I described what/how I did that here:...

@KingMob It's not a problem for me anymore. The problem was some Datomic query for me, that was what caused the OOM. I did switch to a standard Java threadpool...

Hi, I don't have good idea. I'm away from my job until end of October, maybe I can investigate further then. I do remember doing some extra fixes (3 commits)...

Thanks for a fine project! This issue is also hitting us. Will there be a new release for this soon? Thanks!

Just a tip @danielcompton : Have you tried [Pyro](https://github.com/venantius/pyro/)? Might be of interest. (Personally I'm not using it at the moment.) Not sure how it would plug into HTML, but...

Hi @ddeaguiar And thanks for your helpful response! It helped to set the `Content-Type`: ```clojure (defn respond-async [request] (let [c (async/chan)] (async/go (async/>! c {:foo 1}) (async/>! c {:bar 2})...