I'm currently building an high speed application which needs to update values on the a redis database using hiredis c library. Currently using pipelined mode for a faster write, to speed up further I don't actually read the reply and free them at all.
- Will not reading the reply a bad design?
- Is there a way to setup redis to not reply at all? To cut the Round Trip Time.
Thanks for the help.