MCPcopy
hub / github.com/redis/go-redis / Pipeline

Method Pipeline

redis.go:1685–1691  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1683}
1684
1685func (c *Conn) Pipeline() Pipeliner {
1686 pipe := Pipeline{
1687 exec: c.processPipelineHook,
1688 }
1689 pipe.init()
1690 return &pipe
1691}
1692
1693func (c *Conn) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error) {
1694 return c.TxPipeline().Pipelined(ctx, fn)

Callers 1

PipelinedMethod · 0.95

Calls 1

initMethod · 0.95

Tested by

no test coverage detected