neomantra - Overview
3
In response to [this brief blog entry](https://wjd.io/2019/03/08/redis-cpu-pinning/), [@antirez tweeted](https://twitter.com/antirez/status/1104075055879864320) for some documentation on high-performance techniques for Redis. What I present here are general high-performance computing (HPC) techniques. The examples are oriented to Redis. but they work well for any program designed to be single- or worker-threaded and asynchronous (e.g. uses epoll).
5
The motivation for using these techniques is to maximize performance of our system and services. By isolating work, controlling memory, and other tuning, you can achieve significant reduction in latency and increase in throughput.