Skip to content

Instantly share code, notes, and snippets.

@sfc
Created October 22, 2009 17:55
Show Gist options
  • Save sfc/216135 to your computer and use it in GitHub Desktop.
Save sfc/216135 to your computer and use it in GitHub Desktop.
redis benchmarks on various machines
# CentOS 5, Xeon E5520 @ 2.26 GHz (8 cores)
[kmarsh@sfc1 redis-1.01]$ ./redis-benchmark -q
SET: 149268.66 requests per second
GET: 156281.25 requests per second
INCR: 142885.72 requests per second
LPUSH: 181854.55 requests per second
LPOP: 163950.81 requests per second
PING: 204102.05 requests per second
# CentOS, Xeon X5355 @ 2.66GHz (4 cores)
[kmarsh@va1 redis-1.01]$ ./redis-benchmark -q
SET: 83341.66 requests per second
GET: 79373.02 requests per second
INCR: 74074.07 requests per second
LPUSH: 84762.71 requests per second
LPOP: 80008.00 requests per second
PING: 90090.09 requests per second
# Clean install of CentOS in VMware, Xeon X3330 @ 2.66Ghz (1 core)
[kmarsh@localhost redis-1.01]$ ./redis-benchmark -q
SET: 15290.52 requests per second
GET: 15151.51 requests per second
INCR: 15649.45 requests per second
LPUSH: 17793.60 requests per second
LPOP: 16778.52 requests per second
PING: 17361.11 requests per second
# 2.26GHz MacBook Pro (2 cores)
redis-1.01$ ./redis-benchmark -q
SET: 27573.00 requests per second
GET: 25604.59 requests per second
INCR: 24395.12 requests per second
LPUSH: 28549.86 requests per second
LPOP: 25318.18 requests per second
PING: 26892.76 requests per second
# Linux, Intel(R) Core(TM)2 Duo CPU E4600 @ 2.40GHz (2 cores)
ffx5:~/src/redis-1.01$ ./redis-benchmark -q
SET: 126607.59 requests per second
GET: 119107.14 requests per second
INCR: 107537.63 requests per second
LPUSH: 129922.08 requests per second
LPOP: 119083.34 requests per second
PING: 147073.53 requests per second
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment