Roland Kuhn
Roland Kuhn
Hi @CptnKirk, sorry for the delay: the Akka team is taking over maintainership of this plugin, the new repo is at https://github.com/akka/akka-persistence-dynamodb. We are in the process of updating to...
While I agree with the overall assessment, the main reason is that comparing futures with coroutines and actors concerning their instantiation performance does not make much sense because a Future...
Hi @nefilim, sorry for the long delay: the Akka team is now taking over maintainership of this plugin, the new repo is at https://github.com/akka/akka-persistence-dynamodb. Would you mind submitting a PR...
I solved this a little differently in akka/akka-persistence-dynamodb#46 by using the default credentials provider chain as documented [here](http://docs.aws.amazon.com/AWSSdkDocsJava/latest/DeveloperGuide/credentials.html#using-the-default-credential-provider-chain).
Thanks, I got it working by using `-tags=dev` and purging the browser cache (the 301 → https was still in there). However, I also tried accessing the public IP, i.e....
Right, at that point it becomes a somewhat arbitrary syntactic choice whether the `loop { ... }` should be explicit within the actor or implied by the execution mechanism. The...
Great point(er)s! > Fowler’s Mixed Metaphors Yes, I was aware of this paper and now read it again, it is a deep and comprehensive description. My takeaway is that whole-system...
Riker looks to be a rather close translation of Akka to Rust, interesting! --- Thanks for elaborating, this is very helpful! I still have a few pieces to investigate, but...
It turns out that with my Rust knowledge it is quite a thorny issue to implement a generic actor factory: #2 Improvement suggestions very welcome! Such library abstractions would really...
Update: see https://github.com/Actyx/acto/pull/2#issuecomment-846605725 for a new idea with types that are a lot simpler, and using macro rules to hide some boilerplate code (so the user won’t have to spell...