You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are building a transaction package manager on top of go-redis that orchestrates pipelines and Postgres transactions together.
For this integration, we need a way to retrieve the list of commands that were queued in a pipeline.
At the moment, pipeline.go stores the commands in a private field. Because it is unexported, we cannot access or inspect the collected commands outside the package.
Proposal
Introduce a method like:
func (p*Pipeline) Cmds() []Cmder
Boris-creator, BorisQD, Magic-B, SharipovShavkat11-709, Tavbulatov and 1 more