aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/drb_store.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/cache/drb_store.rb')
-rw-r--r--activesupport/lib/active_support/cache/drb_store.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/drb_store.rb b/activesupport/lib/active_support/cache/drb_store.rb
new file mode 100644
index 0000000000..b80c2ee4d5
--- /dev/null
+++ b/activesupport/lib/active_support/cache/drb_store.rb
@@ -0,0 +1,15 @@
+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 \ No newline at end of file