1 2 3 4 5 6 7 8 9 10 11 12 13 14
module ActiveSupport module Cache class DRbStore < MemoryStore #:nodoc: attr_reader :address def initialize(address = 'druby://localhost:9192') require 'drb' unless defined?(DRbObject) super() @address = address @data = DRbObject.new(nil, address) end end end end