Tagged Questions
4
votes
2answers
323 views
Should I be using Rails or Ruby for this website application? How?
I'm very new to web programming (or actually, very old to it, since the last time I messed with the web was HTML 1.1), but now need to deploy a web application quickly. It seems like every time I ...
4
votes
2answers
629 views
Drb and “is recycled object” exception
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, @reservation_search, ...
3
votes
1answer
267 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 ...
3
votes
2answers
130 views
is_a? and dRuby objects
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 the ...
2
votes
1answer
60 views
DRb, “who called me” method
In a DRbserver, how can I see who called a method?
I want to log the ip and port from anyone who calls a certain method.
something like
def who
uri = <DRb method here>
puts uri
end
Is this ...
2
votes
1answer
105 views
DRb::DRbServerNotFound passing Sinatra params
I have a Sinatra application and DRb server object paired. When I try to pass the Sinatra params hash to a method on my server object I get DRb::DRbConnError …
DRb::DRbServerNotFound, yet the same ...
2
votes
1answer
98 views
Stopping a Distributed Ruby Service
I have a script that starts up a DRb service, before spawning a handler object and waiting via DRb.thread.join. I would like the script to run until explicitly killed, so I added
trap "INT" do
...
1
vote
1answer
78 views
DRb method access
I am writing a simple distributed system in DRb.
I have all the peers, and one server to do the bootstrapping. In that server, I have a few methods like "suggest_peer", and "start_service" and ...
1
vote
0answers
123 views
How would a client/server utilizing UPnP work in Ruby?
I'd like to allow two computers behind routers share files in a server/client setup using Ruby; I've looked into the UPnP implementation for Ruby, but the documentation is, in my opinion, fairly poor ...
1
vote
6answers
372 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?
1
vote
0answers
180 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
574 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 ...
0
votes
0answers
16 views
How many clients can a drb server handle?
I am currently using drb on an EC2 micro instance to handle some remote data processing tasks, it worked well in tests but also made me wondering about how many clients can a drb server deal with at ...
0
votes
0answers
29 views
Rails 3 does not find ferret drb server
I'm trying to use the ferret drb server in my rails 3 app but it just keep using local index,
the server is up running but the application just wont use it.
I think it can relate to this but I'm not ...
0
votes
1answer
63 views
QtRuby with DRb or EventMachine
I would like to write an application in Ruby using Qt which will communicate over the network with other instances.
How can I integrate Qt's event loop with DRb or EventMachine?
EDIT:
I found the ...
0
votes
1answer
109 views
How to implement remoting in Ruby over a proxy server?
We're looking at using Ruby for a client-server (non-web based) project where both the client and server would be written in JRuby. The client (Windows) would sit behind a corporate firewall with a ...
0
votes
0answers
74 views
Handling DRb disconnection and method object calls
I have a DRb service running:
DRb.start_service(server_ip, some_object)
I'm going to connect to this server with a client and grab an instance of this object:
drb_obj = DRbObject.new(nil, ...
0
votes
1answer
676 views
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 ...