vemv

Results 426 comments of vemv

> To start off, you have referenced "macros", above, but my thinking is that you are referring to anything that shows up right after a left parenthesis They can be...

Uhm, after further testing my solution doesn't work properly - threads leak instaed of being shut down. Even when `destroy-client-resource` is being properly called. One thing I noticed is that...

In the application I was working on I found it really awkward though to pass around a reference to the client-resources from defn to defn. A bit hard to explain...

Fair enough, it might not be that difficult since every deprecation note tells you what to use instead Might give it a shot

I had the reported problem and got it fixed by upgrading `celtuce`. Kudos to everyone involved 🙌 > The only unfortunate side effect is it adds some additional locking contention...

From what I see `parallel` is only used for a single `p/pmap` call. Perhaps it can be simplified to a mere `pmap`? It's what I use in friend projects like...

And as Arne points out there's `future` usage as well. That's where things seem to go awry, `future` (`defn replace-ns-symbol`) is ultimately called inside a `pmap` (`defn replace-ns-symbol-in-source-files`), so one...

We simplified/reduced parallelism in https://github.com/benedekfazekas/mranderson/pull/60 . No slowness could be repro'd in CI, however we kept seeing it in our laptops. Could be a macOS thing assuming you are also...

While I reckon that the reduced parallelism (#59) makes the issue less likely, probably we cannot assure it's gone in absence of a careful analysis. Perhaps for the time being...

> Perhaps for the time being we can introduce an option (opt-in) to make all processing serial instead? WDYT?