Y
Hacker News
new
|
ask
|
show
|
jobs
by
arthursilva
3163 days ago
I wonder if Redis throughput is even a problem in practice. People usually add nodes to get more capacity (memory).
1 comments
ihsw2
3163 days ago
For most use-cases, Redis nodes will saturate network IO before CPU, but it should be noted that Redis is single-threaded so YMMV.
link
joneholland
3162 days ago
We do heavy pipelining and tend to max out the single thread, so we run multiple redis instances per host.
link