1
0
mirror of https://github.com/redis/go-redis.git synced 2025-12-02 06:22:31 +03:00

autopipeline playground

This commit is contained in:
Nedyalko Dyakov
2025-10-27 16:08:40 +02:00
parent 9f3f8b7c7b
commit 7198f47baa
17 changed files with 1806 additions and 7 deletions

View File

@@ -123,6 +123,10 @@ func (c *Pipeline) Pipeline() Pipeliner {
return c
}
func (c *Pipeline) AutoPipeline() *AutoPipeliner {
return nil
}
func (c *Pipeline) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error) {
return c.Pipelined(ctx, fn)
}