resplite 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,17 +29,19 @@ A typical comparison is **Redis (e.g. in Docker)** on one side and **RESPLite lo
29
29
 
30
30
  | Suite | Redis (Docker) | RESPLite (default) |
31
31
  |-----------------|----------------|--------------------|
32
- | PING | 9.17K/s | 27.59K/s |
33
- | SET+GET | 4.65K/s | 9.53K/s |
34
- | MSET+MGET(10) | 4.47K/s | 5.35K/s |
35
- | INCR | 9.84K/s | 15.56K/s |
36
- | HSET+HGET | 4.63K/s | 10.95K/s |
37
- | HGETALL(50) | 9.19K/s | 8.19K/s |
38
- | SADD+SMEMBERS | 9.16K/s | 15.54K/s |
39
- | LPUSH+LRANGE | 7.97K/s | 10.24K/s |
40
- | ZADD+ZRANGE | 8.08K/s | 2.89K/s |
41
- | SET+DEL | 4.60K/s | 6.62K/s |
42
- | FT.SEARCH | 8.20K/s | 7.20K/s |
32
+ | PING | 8.79K/s | 37.36K/s |
33
+ | SET+GET | 4.68K/s | 11.96K/s |
34
+ | MSET+MGET(10) | 4.41K/s | 5.81K/s |
35
+ | INCR | 9.54K/s | 18.97K/s |
36
+ | HSET+HGET | 4.40K/s | 11.91K/s |
37
+ | HGETALL(50) | 8.39K/s | 11.01K/s |
38
+ | HLEN(50) | 9.36K/s | 31.21K/s |
39
+ | SADD+SMEMBERS | 9.27K/s | 17.37K/s |
40
+ | LPUSH+LRANGE | 8.34K/s | 14.27K/s |
41
+ | LREM | 4.37K/s | 6.08K/s |
42
+ | ZADD+ZRANGE | 7.80K/s | 17.12K/s |
43
+ | SET+DEL | 4.39K/s | 9.57K/s |
44
+ | FT.SEARCH | 8.36K/s | 8.22K/s |
43
45
 
44
46
  *Run `npm run benchmark -- --template default` to reproduce. Numbers depend on host and whether Redis is native or in Docker.*
45
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resplite",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "A RESP2 server with practical Redis compatibility, backed by SQLite",
5
5
  "type": "module",
6
6
  "main": "src/index.js",