Skip to content

Instantly share code, notes, and snippets.

@antirez
Created February 23, 2012 13:59
Show Gist options
  • Save antirez/1892983 to your computer and use it in GitHub Desktop.
Save antirez/1892983 to your computer and use it in GitHub Desktop.
./redis-benchmark -n 1000000 -P 16 -q
PING_INLINE: 672947.56 requests per second
PING_BULK: 716845.88 requests per second
SET: 309693.41 requests per second
GET: 463606.84 requests per second
INCR: 357142.88 requests per second
LPUSH: 360100.84 requests per second
LPOP: 364298.75 requests per second
SADD: 340831.62 requests per second
SPOP: 461893.78 requests per second
(pipelining 16 requests per time. MBA 11" i7)
@dspezia
Copy link

dspezia commented Feb 23, 2012

Amazing !!! With my own benchmarks (pipeline + parallel clients), I have never more than 400K gets/s and this is using unix domain socket and a Xeon X5670 @ 2.93GHz ...

@twojcik
Copy link

twojcik commented Mar 1, 2012

nice:)
./redis-benchmark -n 1000000 -P 16 -q
PING_INLINE: 1133786.75 requests per second
PING_BULK: 1203369.50 requests per second
SET: 682593.81 requests per second
GET: 862812.75 requests per second
INCR: 706713.81 requests per second
LPUSH: 742390.50 requests per second
LPOP: 701262.25 requests per second
SADD: 640204.88 requests per second
SPOP: 901713.31 requests per second

i7 920 - 2.66Ghz

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment