summary refs log tree commit diff
path: root/changelog.d/7439.feature (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.13.0rc1Andrew Morgan2020-05-111-1/+0
|
* Make redis go faster with hiredis (#7439)Richard van der Hoff2020-05-061-0/+1
For the record, the reason we need this is as follows: each RDATA command comes down the redis pipe as a subscription message. txredisapi as written needs at least three reactor ticks to read each subscription message from the tcp buffer. Hence, once the process gets loaded, it starts getting behind, and eventually redis knifes the connection. it then takes ages for the master to work its way through the backlog, before it reconnects again, during which any commands from any workers are dropped.