nobject: dead-simple remote objects for Ruby, inspired by Elixir/Go/Actor model(github.com)
github.com
nobject: dead-simple remote objects for Ruby, inspired by Elixir/Go/Actor model
https://github.com/jefflunt/nobject
2 comments
Isn't this like DRuby?
huh, maybe. I didn't know about this or find it when I was looking around. thanks, I'll check this out.
it does seem very similar. the instantiation syntax and the way you handle things is very, very similar for sure.
Inspired by all of these examples, but desiring a dead-simple solution for the Ruby applications I maintain - I created nobject.
It's not quite RPC. It's not quite the Actor model. It's not quite lightweight processes/channels. It's the ability to instantiate an object in one process but then push it to another process, yet be able to use that remote object like it's still local.
The example code in the repo's README will get you up-an-running in minutes.