-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce client side caching benchmark capabilities. Enable rueidis/…
…radix underlying vanilla client selection (#31) * First CSC POC using a fork of ruedis * Added replica test to CI. Enabled all features on the rueidis variation * Fixed CI service image
- Loading branch information
1 parent
2eda50c
commit c05af62
Showing
10 changed files
with
272 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ dist | |
*.json | ||
dump.rdb | ||
.coverdata | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
package main | ||
|
||
var readOnlyCommands = map[string]bool{ | ||
"LLEN": true, | ||
"DUMP": true, | ||
"PTTL": true, | ||
"GEOHASH": true, | ||
"HEXISTS": true, | ||
"GROUPS": true, | ||
"GET": true, | ||
"SSCAN": true, | ||
"TOUCH": true, | ||
"CONSUMERS": true, | ||
"BITCOUNT": true, | ||
"MGET": true, | ||
"SUBSTR": true, | ||
"HVALS": true, | ||
"TTL": true, | ||
"FREQ": true, | ||
"XREAD": true, | ||
"PFCOUNT": true, | ||
"ZREVRANGEBYSCORE": true, | ||
"HMGET": true, | ||
"LINDEX": true, | ||
"XLEN": true, | ||
"GEODIST": true, | ||
"ZLEXCOUNT": true, | ||
"LPOS": true, | ||
"ZREVRANK": true, | ||
"GEORADIUS_RO": true, | ||
"GETRANGE": true, | ||
"STRLEN": true, | ||
"REFCOUNT": true, | ||
"IDLETIME": true, | ||
"SCARD": true, | ||
"EXPIRETIME": true, | ||
"ZRANGE": true, | ||
"LOLWUT": true, | ||
"SINTER": true, | ||
"XREVRANGE": true, | ||
"ZRANGEBYSCORE": true, | ||
"SUNION": true, | ||
"GETBIT": true, | ||
"BITFIELD_RO": true, | ||
"ZDIFF": true, | ||
"HGETALL": true, | ||
"ZSCORE": true, | ||
"ZREVRANGE": true, | ||
"ZREVRANGEBYLEX": true, | ||
"SINTERCARD": true, | ||
"SMISMEMBER": true, | ||
"KEYS": true, | ||
"LCS": true, | ||
"SORT_RO": true, | ||
"ZRANK": true, | ||
"HSTRLEN": true, | ||
"LRANGE": true, | ||
"PEXPIRETIME": true, | ||
"RANDOMKEY": true, | ||
"SMEMBERS": true, | ||
"ZMSCORE": true, | ||
"HKEYS": true, | ||
"ZCOUNT": true, | ||
"ZSCAN": true, | ||
"GEOSEARCH": true, | ||
"ZUNION": true, | ||
"XPENDING": true, | ||
"HRANDFIELD": true, | ||
"HLEN": true, | ||
"ZRANDMEMBER": true, | ||
"DBSIZE": true, | ||
"SDIFF": true, | ||
"STREAM": true, | ||
"ZINTER": true, | ||
"SCAN": true, | ||
"TYPE": true, | ||
"USAGE": true, | ||
"ZINTERCARD": true, | ||
"SISMEMBER": true, | ||
"HGET": true, | ||
"SRANDMEMBER": true, | ||
"ENCODING": true, | ||
"EXISTS": true, | ||
"GEOPOS": true, | ||
"XRANGE": true, | ||
"ZRANGEBYLEX": true, | ||
"GEORADIUSBYMEMBER_RO": true, | ||
"BITPOS": true, | ||
"ZCARD": true, | ||
"HSCAN": true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.