Fabio Tudone
Fabio Tudone
I don't know much about `refactor-nrepl` but I tried adding the Leiningen plugin to a basically empty project with no deps (specifically no Quasar/Pulsar and no agents) and when I...
Here (Linux Mint 17.2 Rafaela, Oracle JDK 1.8.0_60-b27 64-bit on MBP late 2008) this too breaks with the above error: ``` clojure (defproject dep-test "0.1.0-SNAPSHOT" :description "FIXME: write description" :url...
Adding `:bootclasspath true` (which tells Leiningen to add the agent JAR to the boot class path as well) seems to solve the issue, although it's not completely clear why to...
@beppu Thanks for posting a workaround. I'll be looking further into this issue.
@expez Thanks, it doesn't look like the instrumentation errors in https://github.com/clojure-emacs/refactor-nrepl/issues/107 are the source of the issue because when not using auto-instrumentation I can see no errors in the full...
Hi, the core idea is pretty straightforward: just send to the messaging solution and receive from it rather than sending/receiving between actors. The rest is a matter of interfacing the...
I'll add that you could add some relaying actors on the sending side as well: in such a way the application actors won't see any difference between messaging directly and...
@hellonico There's a new post about Quasar actors integration with Kafka and ZeroMQ that can be interesting: http://blog.paralleluniverse.co/2016/04/14/quasar-actors-kafka-zeromq/
This might be related to [Clojure's 1.8's direct linking](http://clojure.org/reference/compilation). Have you tried with `^:redef` or `^:dynamic`?
This doesn't happen with non-matching receives (`(receive)`).