mirror of
https://github.com/redis/go-redis.git
synced 2025-07-28 06:42:00 +03:00
docs: pipeline documentation changed to "not thread(goroutines) safe"
Signed-off-by: monkey <golang@88.com>
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user