File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ a Redisson like distributed locking implementation using Redis.
55## Installation
66
77``` shell
8- go get github.com/cheerego/godisson
8+ go get github.com/cheerego/go-redisson
99```
1010
1111
@@ -14,12 +14,12 @@ go get github.com/cheerego/godisson
1414* Mutex
15151 . Exclusive Lock (X Lock).
16162 . use it like std package sync.Mutex.
17- 3 . not a reentrant lock, can't lock twice in a same goroutine.
17+ 3 . not a reentrant lock that can't lock twice in a same goroutine.
1818
1919* RLock
20201 . Exclusive Reentrant Lock.
21212 . use it like java redisson.
22- 3 . it is a reentrant lock that can lock many times in a same goroutine.
22+ 3 . a reentrant lock that can lock many times in a same goroutine.
2323
2424## Features
2525
You can’t perform that action at this time.
0 commit comments