ruby - Whats the highest (approximate) request rate DRb can handle? -
i'm using drb relatively infrequent interprocess communication now, i'm worried may not able handle load if service grows, given things spawining new thread deal every request. have experience dealing drb's upper limits , can tell me @ approximately load started causing problems? better way of dealing this, perhaps thread running sinatra?
run performance test on it, , test yourself.
require 'benchmark' benchmark.bm |x| x.report {100000.times {"do drb request here"}} end
Comments
Post a Comment