diff --git a/doc/Benchmarks.html b/doc/Benchmarks.html
index e33e7b71..53f8bb44 100644
--- a/doc/Benchmarks.html
+++ b/doc/Benchmarks.html
@@ -111,6 +111,14 @@ 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 seconddiff --git a/doc/MgetCommand.html b/doc/MgetCommand.html new file mode 100644 index 00000000..0e8120f2 --- /dev/null +++ b/doc/MgetCommand.html @@ -0,0 +1,52 @@ + + + + + + + +
Get the values of all the specified keys. If one or more keys dont existor is not of type String, a 'nil' value is returned instead of the valueof the specified key, but the operation never fails.+
+$ ./redis-cli set foo 1000 ++OK +$ ./redis-cli set bar 2000 ++OK +$ ./redis-cli mget foo bar +1. 1000 +2. 2000 +$ ./redis-cli mget foo bar nokey +1. 1000 +2. 2000 +3. (nil) +$ +