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)
|
var _ Pipeliner = (*Pipeline)(nil)
|
||||||
|
|
||||||
// Pipeline implements pipelining as described in
|
// Pipeline implements pipelining as described in
|
||||||
// http://redis.io/topics/pipelining. It's safe for concurrent use
|
// http://redis.io/topics/pipelining.
|
||||||
// by multiple goroutines.
|
// Please note: it is not safe for concurrent use by multiple goroutines.
|
||||||
type Pipeline struct {
|
type Pipeline struct {
|
||||||
cmdable
|
cmdable
|
||||||
statefulCmdable
|
statefulCmdable
|
||||||
|
|
Loading…
Reference in New Issue