My favorites | Sign in
Logo
                
Search
for
Updated Mar 21, 2009 by antirez
Benchmarks  

How Fast is Redis?

Redis includes the redis-benchmark utility that simulates SETs/GETs done by N clients at the same time sending M total queries (it is similar to the Apache's ab utility). Below you'll find the full output of the benchmark executed against a Linux box.

Results: about 110000 SETs per second, about 81000 GETs per second.

Latency percentiles

./redis-benchmark -n 100000

====== SET ======
  100007 requests completed in 0.88 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1

58.50% <= 0 milliseconds
99.17% <= 1 milliseconds
99.58% <= 2 milliseconds
99.85% <= 3 milliseconds
99.90% <= 6 milliseconds
100.00% <= 9 milliseconds
114293.71 requests per second

====== GET ======
  100000 requests completed in 1.23 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1

43.12% <= 0 milliseconds
96.82% <= 1 milliseconds
98.62% <= 2 milliseconds
100.00% <= 3 milliseconds
81234.77 requests per second

====== INCR ======
  100018 requests completed in 1.46 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1

32.32% <= 0 milliseconds
96.67% <= 1 milliseconds
99.14% <= 2 milliseconds
99.83% <= 3 milliseconds
99.88% <= 4 milliseconds
99.89% <= 5 milliseconds
99.96% <= 9 milliseconds
100.00% <= 18 milliseconds
68458.59 requests per second

====== LPUSH ======
  100004 requests completed in 1.14 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1

62.27% <= 0 milliseconds
99.74% <= 1 milliseconds
99.85% <= 2 milliseconds
99.86% <= 3 milliseconds
99.89% <= 5 milliseconds
99.93% <= 7 milliseconds
99.96% <= 9 milliseconds
100.00% <= 22 milliseconds
100.00% <= 208 milliseconds
88109.25 requests per second

====== LPOP ======
  100001 requests completed in 1.39 seconds
  50 parallel clients
  3 bytes payload
  keep alive: 1

54.83% <= 0 milliseconds
97.34% <= 1 milliseconds
99.95% <= 2 milliseconds
99.96% <= 3 milliseconds
99.96% <= 4 milliseconds
100.00% <= 9 milliseconds
100.00% <= 208 milliseconds
71994.96 requests per second

Notes: changing the payload from 256 to 1024 or 4096 bytes does not change the numbers significantly (but reply packets are glued together up to 1024 bytes so GETs may be slower with big payloads). The same for the number of clients, from 50 to 256 clients I got the same numbers. With only 10 clients it starts to get a bit slower.

You can expect different results from different boxes. For example a low profile box like Intel core duo T5500 clocked at 1.66Ghz running Linux 2.6 will output the following:

 ./redis-benchmark -q -n 100000
SET: 53684.38 requests per second
GET: 45497.73 requests per second
INCR: 39370.47 requests per second
LPUSH: 34803.41 requests per second
LPOP: 37367.20 requests per second

Another one using a 64 bit box, a Xeon L5420 clocked at 2.5 Ghz:

 ./redis-benchmark -q -n 100000
PING: 111731.84 requests per second
SET: 108114.59 requests per second
GET: 98717.67 requests per second
INCR: 95241.91 requests per second
LPUSH: 104712.05 requests per second
LPOP: 93722.59 requests per second

Comment by qixludo, Mar 08, 2009

My test on an oldish dual core Linux box with one kernel-based RAID1 volume and an average load of 0.1-0.2

./redis-benchmark -n 100000


*** SET TEST ***
== 100003 requests completed in 1.83 seconds
== 50 parallel clients
== 3 bytes payload
== keep alive: 1

36.67% <= 0 milliseconds
99.85% <= 1 milliseconds
99.95% <= 2 milliseconds
99.96% <= 3 milliseconds
99.98% <= 5 milliseconds
100.00% <= 6 milliseconds
100.00% <= 210 milliseconds

== 54527.26 requests per second


*** GET TEST ***
== 100000 requests completed in 2.45 seconds
== 50 parallel clients
== 3 bytes payload
== keep alive: 1

0.09% <= 0 milliseconds
79.16% <= 1 milliseconds
99.80% <= 2 milliseconds
99.83% <= 3 milliseconds
99.88% <= 4 milliseconds
99.90% <= 5 milliseconds
99.90% <= 6 milliseconds
99.94% <= 8 milliseconds
99.95% <= 9 milliseconds
99.95% <= 10 milliseconds
99.97% <= 26 milliseconds
100.00% <= 27 milliseconds

== 40733.20 requests per second
Comment by antirez, Mar 08, 2009

Ludo: cool! I could basically handle my largest applications with a single server instead of the MySQL cluster I'm running currently :)

Comment by jauderho, Mar 08, 2009

Dell E520 desktop with 1 Core2 cpu and 4GB RAM


*** SET TEST ***
== 100001 requests completed in 0.80 seconds
== 50 parallel clients
== 3 bytes payload
== keep alive: 1

60.44% <= 0 milliseconds
99.97% <= 1 milliseconds
99.99% <= 2 milliseconds
99.99% <= 3 milliseconds
100.00% <= 4 milliseconds
100.00% <= 5 milliseconds

== 125629.40 requests per second


*** GET TEST ***
== 100001 requests completed in 1.42 seconds
== 50 parallel clients
== 3 bytes payload
== keep alive: 1

50.83% <= 0 milliseconds
99.97% <= 1 milliseconds
99.99% <= 2 milliseconds
99.99% <= 3 milliseconds
100.00% <= 4 milliseconds
100.00% <= 5 milliseconds
100.00% <= 207 milliseconds

== 70373.68 requests per second


*** INCR TEST ***
== 100000 requests completed in 1.19 seconds
== 50 parallel clients
== 3 bytes payload
== keep alive: 1

40.67% <= 0 milliseconds
100.00% <= 1 milliseconds
100.00% <= 2 milliseconds

== 84033.61 requests per second
Comment by antirez, Mar 09, 2009

I modified Redis in order to send multi-buffer (but small) replies in a single TCP packet. Results updated in this page.

Comment by luca.mearelli, Mar 14, 2009

I did a bit of testing on the Amazon EC2 virtual servers. The results are "a bit" disappointing for the small instance... (but it's a VPS)

P.S. If it's of any interest I have prepared a script that can be used to do the benchmarking on EC2 (launches the instances, downloads from svn, compiles, benchmarks, ...).

Fedora Base 32 bit ( ami-5647a33f )


Small ( m1.small )
  • 1.7 GB memory
  • 1 EC2 Compute Unit (1 virtual core with 1 EC2 Compute Unit)
  • 160 GB instance storage (150 GB plus 10 GB root partition)
  • 32-bit platform
  • I/O Performance: Moderate

SET: 9263.55 requests per second
GET: 8840.95 requests per second
INCR: 8607.33 requests per second
LPUSH: 9144.11 requests per second
LPOP: 8813.68 requests per second

High-CPU Medium ( c1.medium )

  • 1.7 GB of memory
  • 5 EC2 Compute Units (2 virtual cores with 2.5 EC2 Compute Units each)
  • 350 GB of instance storage
  • 32-bit platform
  • I/O Performance: Moderate

SET: 20068.23 requests per second
GET: 19342.36 requests per second
INCR: 19264.11 requests per second
LPUSH: 19872.81 requests per second
LPOP: 19290.12 requests per second

Fedora Base 64 bit ( ami-2547a34c )


Large ( m1.large )
  • 7.5 GB memory
  • 4 EC2 Compute Units (2 virtual cores with 2 EC2 Compute Units each)
  • 850 GB instance storage (2×420 GB plus 10 GB root partition)
  • 64-bit platform
  • I/O Performance: High

SET: 44209.55 requests per second
GET: 43802.02 requests per second
INCR: 29943.43 requests per second
LPUSH: 30308.39 requests per second
LPOP: 28438.73 requests per second

Extra Large ( m1.xlarge )

  • 15 GB memory
  • 8 EC2 Compute Units (4 virtual cores with 2 EC2 Compute Units each)
  • 1,690 GB instance storage (4×420 GB plus 10 GB root partition)
  • 64-bit platform
  • I/O Performance: High

SET: 46932.43 requests per second
GET: 44705.86 requests per second
INCR: 44702.73 requests per second
LPUSH: 47688.13 requests per second
LPOP: 46279.50 requests per second

High-CPU Extra Large ( c1.xlarge )

  • 7 GB of memory
  • 20 EC2 Compute Units (8 virtual cores with 2.5 EC2 Compute Units each)
  • 1690 GB of instance storage
  • 64-bit platform
  • I/O Performance: High

SET: 62114.91 requests per second
GET: 60756.38 requests per second
INCR: 58789.54 requests per second
LPUSH: 60425.98 requests per second
LPOP: 56660.06 requests per second
Comment by jhernandis, Mar 15, 2009

Hi, I've tested using PHP client.

In a Dell Inspiron 6400 (Core Duo T2250 @1.73GHz, 1 GB RAM). With Ubuntu 8.04 (linux 2.6)

I've generated 1000000 (1M) entries id=text, and took over 1'20" (1 minute 20 seconds)

With 100000 (100K) entries took 9 seconds, as I expected.

I've made the same test in MySQL in local, and the results are similar.

The redis-benchmarks:

SET
  1. 0007 requests completed in 1.27 seconds
50 parallel clients 3 bytes payload keep alive: 1

57.12% <= 0 milliseconds 99.76% <= 1 milliseconds 99.83% <= 2 milliseconds 99.86% <= 3 milliseconds 99.89% <= 4 milliseconds 99.93% <= 5 milliseconds 99.93% <= 6 milliseconds 100.00% <= 7 milliseconds 100.00% <= 203 milliseconds 78994.47 requests per second

GET
  1. 0006 requests completed in 1.41 seconds
50 parallel clients 3 bytes payload keep alive: 1

52.85% <= 0 milliseconds 99.35% <= 1 milliseconds 99.68% <= 2 milliseconds 99.79% <= 3 milliseconds 99.86% <= 4 milliseconds 99.86% <= 5 milliseconds 99.93% <= 6 milliseconds 100.00% <= 7 milliseconds 100.00% <= 8 milliseconds 100.00% <= 203 milliseconds 70926.24 requests per second

INCR
  1. 0003 requests completed in 1.50 seconds
50 parallel clients 3 bytes payload keep alive: 1

49.58% <= 0 milliseconds 99.41% <= 1 milliseconds 99.71% <= 2 milliseconds 99.81% <= 3 milliseconds 99.89% <= 4 milliseconds 99.90% <= 5 milliseconds 99.90% <= 6 milliseconds 99.96% <= 7 milliseconds 100.00% <= 8 milliseconds 100.00% <= 202 milliseconds 66757.68 requests per second

LPUSH
  1. 0000 requests completed in 1.35 seconds
50 parallel clients 3 bytes payload keep alive: 1

53.13% <= 0 milliseconds 99.56% <= 1 milliseconds 99.74% <= 2 milliseconds 99.81% <= 3 milliseconds 99.85% <= 4 milliseconds 99.86% <= 5 milliseconds 99.92% <= 6 milliseconds 100.00% <= 7 milliseconds 100.00% <= 203 milliseconds 74128.98 requests per second

LPOP
  1. 0003 requests completed in 1.49 seconds
50 parallel clients 3 bytes payload keep alive: 1

50.45% <= 0 milliseconds 99.40% <= 1 milliseconds 99.65% <= 2 milliseconds 99.69% <= 3 milliseconds 99.83% <= 4 milliseconds 99.86% <= 6 milliseconds 99.96% <= 7 milliseconds 99.97% <= 8 milliseconds 99.99% <= 16 milliseconds 100.00% <= 17 milliseconds 100.00% <= 205 milliseconds 67026.14 requests per second

root@inspiron6400:/opt/redis-beta-6# ./redis-benchmark -n 100000

SET
  1. 0002 requests completed in 1.35 seconds
50 parallel clients 3 bytes payload keep alive: 1

39.43% <= 0 milliseconds 96.91% <= 1 milliseconds 98.56% <= 2 milliseconds 99.23% <= 3 milliseconds 99.63% <= 4 milliseconds 99.72% <= 5 milliseconds 99.83% <= 6 milliseconds 99.92% <= 7 milliseconds 99.95% <= 8 milliseconds 100.00% <= 11 milliseconds 74295.69 requests per second

GET
  1. 0002 requests completed in 1.68 seconds
50 parallel clients 3 bytes payload keep alive: 1

46.01% <= 0 milliseconds 98.75% <= 1 milliseconds 99.42% <= 2 milliseconds 99.51% <= 3 milliseconds 99.72% <= 4 milliseconds 99.79% <= 5 milliseconds 99.82% <= 6 milliseconds 99.89% <= 7 milliseconds 99.89% <= 10 milliseconds 99.93% <= 11 milliseconds 99.95% <= 20 milliseconds 99.96% <= 21 milliseconds 100.00% <= 22 milliseconds 100.00% <= 208 milliseconds 59560.45 requests per second

INCR
  1. 0001 requests completed in 1.75 seconds
50 parallel clients 3 bytes payload keep alive: 1

42.83% <= 0 milliseconds 97.54% <= 1 milliseconds 98.76% <= 2 milliseconds 99.32% <= 3 milliseconds 99.48% <= 4 milliseconds 99.63% <= 5 milliseconds 99.79% <= 6 milliseconds 99.81% <= 7 milliseconds 99.85% <= 9 milliseconds 99.89% <= 11 milliseconds 99.92% <= 12 milliseconds 99.94% <= 14 milliseconds 99.96% <= 15 milliseconds 99.99% <= 26 milliseconds 100.00% <= 27 milliseconds 100.00% <= 208 milliseconds 57013.11 requests per second

LPUSH
  1. 0034 requests completed in 1.36 seconds
50 parallel clients 3 bytes payload keep alive: 1

54.74% <= 0 milliseconds 99.32% <= 1 milliseconds 99.70% <= 2 milliseconds 99.83% <= 3 milliseconds 99.86% <= 4 milliseconds 99.87% <= 5 milliseconds 99.89% <= 6 milliseconds 99.97% <= 7 milliseconds 99.98% <= 16 milliseconds 100.00% <= 17 milliseconds 100.00% <= 205 milliseconds 73338.71 requests per second

LPOP
  1. 0003 requests completed in 1.46 seconds
50 parallel clients 3 bytes payload keep alive: 1

45.98% <= 0 milliseconds 99.43% <= 1 milliseconds 99.88% <= 2 milliseconds 99.96% <= 3 milliseconds 99.96% <= 5 milliseconds 100.00% <= 7 milliseconds 100.00% <= 208 milliseconds 68448.32 requests per second

I think the PHP client is not properly tuned.

If any is interested I send to him the code I've used.

Comment by antirez, Mar 15, 2009

Hello jhernandis, I don't have numbers about the PHP client performances but I need more data about your tests. The PHP script, the average length of the values SET and so on. Note that if you are adding keys with a single connection you can't expect the same performance of the benchmarks, since they simulate 50 simultaneous clients, so the time spent in the 'round trip time' of request-reply is amortized. If you need to set a lot of keys from a single connection and make it very fast you should use pipelining instead. Thanks!

Comment by antirez, Mar 15, 2009

@luca: thanks for this benchmarks. The small seems a bit too slow... indeed

Comment by jhernandis, Mar 15, 2009

@antirez, I've sent you the code of my tests (I've supossed your mail is antirez AT gmail.com, don't?)

I've used a file containing 1000 phrases from "lorem ipsum" for data, and a for($i=0; $i<1000000M $i++) { $r->set('id' . $i, $data$datapos++?);.......

Comment by antirez, Mar 15, 2009

@jhernandis: thanks I'll look at the code later, but I think the numbers you got are more or less ok:

1000000 sets /80 sec = 12500 query/sec, that is what you will get more or less using the benchmark with '-c 1', add to this a bit of PHP overhead and the sentences that are a bit bigger, and what you get is that you are actually measuring more the round trip time that Redis performances! :)

In order to compare this numbers with MySQL what you really need is this:

Use a client to perform continuous writes, and N clients performing random reads. Under load Redis will have performances similar to the vanilla benchmark, while MySQL will start to degrade and get a lot slower.

Another test you may want to do is to use pipelining to send N queries, with N big (for example 1000 or 10000) and then get N replies, and so on. This will bring you again the numbers you see in the benchmarks.

Comment by jhernandis, Mar 16, 2009

@antirez: Thanks for your explain. I'll test again using the enviroment that you describes.

Comment by impactplayr, Mar 21, 2009

amd 2.1GHz(single core), 2G RAM

redis-benchmark -q -n 100000

PING: 30445.05 requests per second
SET: 36594.59 requests per second
GET: 28957.16 requests per second
INCR: 27976.23 requests per second
LPUSH: 31125.74 requests per second
LPOP: 27297.68 requests per second

ruby bench.rb

Rehearsal ---------------------------------------
set   3.220000   0.710000   3.930000 (  5.794546)
------------------------------ total: 3.930000sec

          user     system      total        real
set   2.970000   0.670000   3.640000 (  5.281302)
Comment by antirez, Mar 21, 2009

@impactplayr: that's a bit slow, what kind of OS? This is what I get under Linux emulated under vmware in a macbook (Inte Core Duo CPU T8300 @ 2.40GHz):

$ ./redis-benchmark -q -n 100000
PING: 41178.68 requests per second
SET: 40962.73 requests per second
GET: 43805.08 requests per second
INCR: 42428.09 requests per second
LPUSH: 40488.66 requests per second
LPOP: 41003.28 requests per second
Comment by antirez, Mar 21, 2009

Another benchmark against a 64 bit Linux box, Xeon L5420 clocked at 2.5 Ghz:

PING: 111731.84 requests per second
SET: 108114.59 requests per second
GET: 98717.67 requests per second
INCR: 95241.91 requests per second
LPUSH: 104712.05 requests per second
LPOP: 93722.59 requests per second
Comment by impactplayr, Mar 21, 2009

@antirez Ubuntu 8.10 32bit

Comment by minard, Apr 06, 2009
# ./redis-benchmark -q -n 100000
 PING : 49263.05 requests per second
  SET : 46729.44 requests per second
  GET : 43649.50 requests per second
 INCR : 39654.78 requests per second
LPUSH : 42019.32 requests per second
 LPOP : 40883.07 requests per second

A slightly aging machine, I suppose: Dual AMD 285 Opteron, 16GB ram. (tbh, I had expected more)

Comment by maxdemarzi, Apr 10, 2009

Ubuntu 8.04 LTS x64

Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz

MemTotal?: 8189780 kB

redis-0.091

I tried ./redis-benchmark -n 1000000 (note the extra zero)

 || PING   ||  78021.45 requests per second  ||  completed in 12.83 seconds || 
 || SET    ||  76167.72 requests per second  ||  completed in 13.16 seconds || 
 || GET    ||  70358.41 requests per second  ||  completed in 14.23 seconds || 
 || INCR   ||  67526.51 requests per second  ||  completed in 14.86 seconds || 
 || LPUSH  ||  73850.38 requests per second  ||  completed in 13.54 seconds || 
 || LPOP   ||  66432.14 requests per second  ||  completed in 15.06 seconds || 

"top", "1" shows:

 || Cpu0   ||  14.3%us ||  49.7%sy ||   0.0%ni ||   0.0%id ||   0.0%wa ||   0.0%hi ||  36.0%si ||   0.0%st || 
 || Cpu1   ||   0.0%us ||   0.3%sy ||   0.0%ni ||  99.7%id ||   0.0%wa ||   0.0%hi ||   0.0%si ||   0.0%st || 
 || Cpu2   ||   0.0%us ||   0.0%sy ||   0.0%ni || 100.0%id ||   0.0%wa ||   0.0%hi ||   0.0%si ||   0.0%st || 
 || Cpu3   ||  12.7%us ||  49.7%sy ||   0.0%ni ||   0.0%id ||   0.0%wa ||   0.0%hi ||  37.7%si ||   0.0%st || 

Mem: 8189780k total, 1043512k used, 7146268k free, 95896k buffers Swap: 9968292k total, 0k used, 9968292k free, 625096k cached

Comment by antirez, Apr 10, 2009

@maxdemarzi: very interesting! Especially the CPU usage bit. Should I guess all this time spent in software interrupts is about the loopback interface?

Btw it's worth to note that every benchmark against loopback must consume 100% of CPU in total otherwise it means there are idle times to remove in the code somewhere.

Comment by minard, Apr 12, 2009

Now with version 0.091:

conf1:

daemonize yes
pidfile /var/run/redis.pid
port 6379
bind 127.0.0.1
timeout 300
save 900 1
dir ./
logfile /dev/null
databases 16
glueoutputbuf yes
shareobjects no

conf2 changes only "shareobjects" to "yes"

Operation run1, conf1 run2, conf1 run3, conf1 run1, conf2 run2, conf2 run3, conf2
PING 51256.79 49214.07 50761.93 55346.43 51389.52 51335.73
SET 50532.09 50126.82 49382.71 53765.05 49805.28 49926.11
GET 47416.79 46425.25 46816.95 51572.98 48475.04 46949.29
INCR 46795.51 44405.86 44742.73 48287.30 47461.32 46446.82
LPUSH 49237.32 48449.61 44170.05 49728.50 48170.04 48925.15
LPOP 46062.64 45684.33 45394.46 47282.74 46104.20 46620.98

It appears that the new option, shareobjects, does give a bit of a performance boost.

Comment by redbe...@openlabs.pl, Apr 24, 2009

I did put some critical comments on using Redis on EC2: http://michalfrackowiak.com/blog:redis-performance

Comment by pcooper, May 14, 2009

On OS X on a 2.66GHz Core 2 Duo MacBook? Pro I get:

$ redis-benchmark -q -n 100000 PING: 28646.62 requests per second SET: 27887.62 requests per second GET: 25755.09 requests per second INCR: 25712.85 requests per second LPUSH: 27951.09 requests per second LPOP: 25544.32 requests per second

Seems very slow (well, not really, but in comparison to other numbers given here), but perhaps is an OS X thing. I'll be using it in production on Linux anyway :)

Comment by antirez, May 15, 2009

Hello pcooper, indeed under Mac OS X the benchmark shows numbers that are very far compared to Linux. My best guess is that this is a not very optimized loopback interface implementation but I'm not sure about it, tests using a real interface against Linux and Mac OS X in similar conditions are really needed in order to verify this guess.

Comment by colinthehowe, May 26, 2009
Comment by Roman.Kosenko, Oct 09, 2009

Why nobody considers testing sets performance ?? The most goal I'm looking at redis it's ability to operate on sets.. but I've got terrible result.. it does 1000 SADDs in about 40 sec! on Core Duo E6850 3.00GHz

why it's so much slooow? anybody else experienced that ?

Comment by birukoff, Oct 14, 2009

For me, operations with sets are only a little bit slower then with lists or strings.

Comment by Roman.Kosenko, Oct 14, 2009

you're right, my excuse.. something wrong with my redis API, I've put sets tests into redis-benchmark and it worked quite well:

./redis-benchmark -q -n 100000

SET: 35473.05 requests per second
GET: 55145.54 requests per second
INCR: 35481.73 requests per second
LPUSH: 35152.90 requests per second
LPOP: 40093.39 requests per second
SADD: 36719.53 requests per second
SREM: 34859.93 requests per second
PING: 50529.29 requests per second
Comment by sebpaa, Nov 05, 2009

hi,

have anybody made benchmark with keep alive disabled?

i've run benchmark:

./redis-benchmark -c 100 -n 10000 -d 200 -k 0 -l

and i've got a lot of:

Connect: connect: Cannot assign requested address

Connect: connect: Cannot assign requested address

Connect: connect: Cannot assign requested address

Connect: connect: Cannot assign requested address

is it normal?

Comment by antirez, Nov 05, 2009

@sebpaa: try this: "sudo sysctl -w net.inet.tcp.msl=1000" if you are using a Mac. In Linux instead use the following: "echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse"

Comment by sebpaa, Nov 05, 2009

great, thx (i didnt see that hint while running benchmark... )

Comment by acharnock, Nov 09 (3 days ago)

I have done some benchmarking using Redis 1.0.2 on: Amazon EC2 Flexiscale Slichost (albeit a tiny vm)

I have compiled it all into a Google Docs spreadsheet and done some cost analysis for both request throughput and available storage. Please let me know if you find it useful:

http://spreadsheets.google.com/ccc?key=0AhcHKeq_S228dDE3QzlES2V3RHhCbmh5MDlQVjdhc1E&hl=en

PS. It would be great to put some bare-metal results on there. If someone could send me benchmarks for 1.0.2 using: ./redis-benchmark -n 100000 ./redis-benchmark -n 10000 -d 200

...along with the server spec and monthly cost of their hosting, I would be happy to add it to the analysis.

Comment by acharnock, Nov 09 (3 days ago)

Sign in to add a comment
Hosted by Google Code