go-redis icon indicating copy to clipboard operation
go-redis copied to clipboard

Concurrent safe pipeline

Open monkey92t opened this issue 1 year ago • 2 comments

In version 9, we removed the lock from the pipeline, as we believed many people did not need it. However, we received some concurrency-related issues, so I think we should provide a concurrent-safe pipeline.

monkey92t avatar Mar 30 '23 13:03 monkey92t

I just figured this out, took me far too long. I've gotten around this for now by overriding the methods I'm using with ones that lock but it's not a great solution.

Gobd avatar Dec 20 '23 00:12 Gobd