redis-em-mutex 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY.rdoc +10 -0
- data/README.rdoc +2 -2
- data/lib/redis/em-mutex.rb +549 -555
- data/lib/redis-em-mutex.rb +5 -5
- data/spec/redis-em-mutex-namespaces.rb +113 -0
- data/spec/redis-em-mutex-semaphores.rb +184 -173
- metadata +16 -13
data/HISTORY.rdoc
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
0.1.1
|
2
|
+
- fixed: namespaces didn't work
|
3
|
+
- added namespaces spec
|
4
|
+
- fixed: rare race condition could raise ArgumentError inside Mutex#lock()
|
5
|
+
- fixed: Mutex.stop_watching raised MutexError after changing internal state
|
6
|
+
- fixed: semaphores spec updated
|
7
|
+
- fixed: ruby-1.9.1 has no SecureRandom.uuid method
|
8
|
+
|
9
|
+
0.1.0
|
10
|
+
- first release
|
data/README.rdoc
CHANGED
@@ -26,7 +26,7 @@ Author:: Rafał Michalski (mailto:rafal@yeondir.com)
|
|
26
26
|
* only for EventMachine
|
27
27
|
* NOT thread-safe
|
28
28
|
* locking order between concurrent processes is undetermined (no FIFO)
|
29
|
-
*
|
29
|
+
* it's not nifty, rather somewhat complicated
|
30
30
|
|
31
31
|
== REQUIREMENTS
|
32
32
|
|
@@ -41,7 +41,7 @@ Author:: Rafał Michalski (mailto:rafal@yeondir.com)
|
|
41
41
|
|
42
42
|
==== Gemfile
|
43
43
|
|
44
|
-
gem "redis-em-mutex", "~> 0.1.
|
44
|
+
gem "redis-em-mutex", "~> 0.1.1"
|
45
45
|
|
46
46
|
==== Github
|
47
47
|
|