Updated README.rdoc again
[feedcatcher.git] / vendor / rails / activesupport / lib / active_support / cache / drb_store.rb
1 module ActiveSupport
2 module Cache
3 class DRbStore < MemoryStore #:nodoc:
4 attr_reader :address
5
6 def initialize(address = 'druby://localhost:9192')
7 require 'drb' unless defined?(DRbObject)
8 super()
9 @address = address
10 @data = DRbObject.new(nil, address)
11 end
12 end
13 end
14 end