go-redis
go-redis copied to clipboard
read-write separation
Our program only needs to execute commands, and we don't care about the result failure. If it fails, it's just an alarm and doesn't do other operations. When I try to use pipeline, I find a problem. Pipeline will confirm the result every time, and the result will be delayed (70ms). If we have 1000 times of pipeline, that is, we need at least 70s to send it. Can I support read-write separation?
No, that is not supported. Are you aware of any other Redis clients that support this?
https://github.com/gomodule/redigo this pkg support,like
go fun(){
for{
Receive()
}
}()
for{
Send()
Send()
Flush()
}
https://github.com/meitu/go-redis-pool
@vmihailenco
This issue is marked stale. It will be closed in 30 days if it is not updated.