We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85ed355 commit a8551d3Copy full SHA for a8551d3
1 file changed
README.md
@@ -5,7 +5,7 @@ a Redisson like distributed locking implementation using Redis.
5
## Installation
6
7
```shell
8
-go get github.com/cheerego/godisson
+go get github.com/cheerego/go-redisson
9
```
10
11
@@ -14,12 +14,12 @@ go get github.com/cheerego/godisson
14
* Mutex
15
1. Exclusive Lock (X Lock).
16
2. use it like std package sync.Mutex.
17
-3. not a reentrant lock, can't lock twice in a same goroutine.
+3. not a reentrant lock that can't lock twice in a same goroutine.
18
19
* RLock
20
1. Exclusive Reentrant Lock.
21
2. use it like java redisson.
22
-3. it is a reentrant lock that can lock many times in a same goroutine.
+3. a reentrant lock that can lock many times in a same goroutine.
23
24
## Features
25
0 commit comments