Added thread-safety to the DRbStore #66, #389 [Ben Stiglitz]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@315 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-02 16:00:50 +00:00
parent 3c141e12fc
commit ddcc67115c
2 changed files with 26 additions and 1 deletions

@ -1,5 +1,7 @@
*SVN*
* Added thread-safety to the DRbStore #66, #389 [Ben Stiglitz]
* Added DateHelper#select_time and DateHelper#select_second #373 [Scott Baron]
* Added class declaration for the MissingFile exception #388 [Kent Sibilev]

@ -5,5 +5,28 @@
require 'drb'
DRb.start_service('druby://127.0.0.1:9192', Hash.new)
session_hash = Hash.new
session_hash.instance_eval { @mutex = Mutex.new }
class <<session_hash
def []=(key, value)
@mutex.synchronize do
super(key, value)
end
end
def [](key)
@mutex.synchronize do
super(key)
end
end
def delete(key)
@mutex.synchronize do
super(key)
end
end
end
DRb.start_service('druby://127.0.0.1:9192', session_hash)
DRb.thread.join