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 ...
1
vote
1answer
572 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
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
2answers
311 views

Getting spork to work with Ruby 1.9.2/3 + Rails 3.1 + Rspec?

There's quite a few solid tutorials out there, and I haven't had too much trouble getting this working in the past. But, after hours of trying, I must be missing something. I've completed the ...