mirror of https://github.com/go-redis/redis.git
docs: pipeline documentation changed to "not thread(goroutines) safe"
Signed-off-by: monkey <golang@88.com>
This commit is contained in:
parent
6525bbbaa1
commit
bc9216edb2
|
@ -31,8 +31,8 @@ type Pipeliner interface {
|
|||
var _ Pipeliner = (*Pipeline)(nil)
|
||||
|
||||
// Pipeline implements pipelining as described in
|
||||
// http://redis.io/topics/pipelining. It's safe for concurrent use
|
||||
// by multiple goroutines.
|
||||
// http://redis.io/topics/pipelining.
|
||||
// Please note: it is not safe for concurrent use by multiple goroutines.
|
||||
type Pipeline struct {
|
||||
cmdable
|
||||
statefulCmdable
|
||||
|
|
Loading…
Reference in New Issue