Tagged Questions

1
vote
6answers
94 views

Is there any Python module similar to Distributed Ruby

I am new to Python. Just want to know is there any module in python similar to ruby's drb? Like a client can use object provided by the drb server?
0
votes
1answer
121 views

[Ruby] Threads or DRb?

I need to have 2 (or maybe 3) continuously running "facets" of a program in Ruby - a communications thread, a render thread and maybe a caching thread. The idea is the rendering thread shows a …
1
vote
0answers
51 views

Is DRb.start_service thread-safe?

I have an issue attemping to do DRb.start_service from 3 separate forked processes, is DRb.start_service thread/process-safe? Out of the 3 processes, 2 start DRb servers fine, the 3rd hangs forever …
1
vote
1answer
115 views

How reliable is DRb?

Are there any issues to consider when using DRb for implementing an in-memory message queue and for synchronizing actions between processes? I heard that it could be unreliable, but haven't found …
4
votes
2answers
295 views

Drb and “is recycled object” exception

Hi all, I'm running in a strange issue. My controller calls a drb object @request_handler = DRbObject.new(nil, url) availability_result = @request_handler.fetch_availability(request, …
1
vote
1answer
200 views

Where is the correct place to initialize the DRb service within a Rails application?

I'm using DRb within a Rails application to offload an expensive task outside the Rails process. Before initializing the client stub with DRbObject.new it is necessary to initialize the DRb service …
3
votes
2answers
84 views

is_a? and dRuby objects

Hi, I'm working with dRuby and basicly I'm calling a remote method that returns me an object. In the clientside I have this code: handle_error(response) if response.is_a?(Error) where response is …