🐛Bump simple redis to 1.0.6 to fix bug hang with password, update doc on redis (#89)

This commit is contained in:
mathieuHa
2023-03-05 14:32:43 +01:00
committed by GitHub
parent dd322a966a
commit 39fcc38980
6 changed files with 41 additions and 23 deletions
+4 -2
View File
@@ -1,6 +1,7 @@
# simpleredis
Minimal go redis with only `get`, `set` and `delete` operation.
With **NO** extern dependencies.
It supports password authentication with redis.
With **NO** external dependencies.
## Example
```go
@@ -26,4 +27,5 @@ if err != nil {
```
## Author
Max Lerebourg @ [Primadviz.com](https://primadviz.com)
Max Lerebourg @ [Primadviz.com](https://primadviz.com)
Mathieu Hanotaux
+2 -1
View File
@@ -81,8 +81,9 @@ func askRedis(sr *SimpleRedis, cmd redisCmd, channel chan redisCmd) {
channel <- redisCmd{Error: fmt.Errorf(RedisNoAuth)}
return
}
break
}
// breaks out of for
break
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
# github.com/leprosus/golang-ttl-map v1.1.7
## explicit; go 1.15
github.com/leprosus/golang-ttl-map
# github.com/maxlerebourg/simpleredis v1.0.5
# github.com/maxlerebourg/simpleredis v1.0.6
## explicit; go 1.19
github.com/maxlerebourg/simpleredis