blob: b80c2ee4d53ae4601b53046bc5d6d2a5c250e713 (
plain) (
tree)
|
|
require 'drb'
module ActiveSupport
module Cache
class DRbStore < MemoryStore #:nodoc:
attr_reader :address
def initialize(address = 'druby://localhost:9192')
super()
@address = address
@data = DRbObject.new(nil, address)
end
end
end
end
|