File tree Expand file tree Collapse file tree 2 files changed +23
-139
lines changed Expand file tree Collapse file tree 2 files changed +23
-139
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ module.exports = {
3636 editLinkText : '' ,
3737 lastUpdated : false ,
3838 nav : [
39+ {
40+ text : 'Try Keva Cloud' ,
41+ link : 'https://cloud.keva.dev' ,
42+ } ,
3943 {
4044 text : 'Documentations' ,
4145 link : '/guide/' ,
@@ -48,10 +52,6 @@ module.exports = {
4852 text : 'Team' ,
4953 link : '/team/' ,
5054 } ,
51- {
52- text : 'Keva IoC' ,
53- link : 'https://github.com/keva-dev/keva-ioc' ,
54- } ,
5555 {
5656 text : 'Slack' ,
5757 link : 'https://join.slack.com/t/kevadev/shared_invite/zt-103vkwyki-pwum_qmcJgaOq6FIy3k2GQ' ,
Original file line number Diff line number Diff line change 1- # Commands
1+ # Redis Compatibility
22
3- Follows [ Redis's commands] ( https://redis.io/commands ) .
3+ Keva supports Redis client protocol up to version 6.2. Following table shows the list of supported [ Redis commands] ( https://redis.io/commands ) :
44
55This is a list of commands that are available in the current latest version of Keva:
66
7- <details >
8- <summary>Server</summary>
9-
10- - INFO
11- - FLUSHDB
12- - TIME
13-
14- </details >
15-
16- <details >
17- <summary>Connection</summary>
18-
19- - AUTH
20- - ECHO
21- - PING
22- - QUIT
23- - CLIENT ID
24- - CLIENT INFO
25-
26- </details >
27-
28- <details >
29- <summary>Key</summary>
30-
31- - DEL
32- - EXISTS
33- - RENAME
34- - EXPIRE
35- - EXPIREAT
36- - DUMP
37- - RESTORE
38- - TYPE
39-
40- </details >
41-
42- <details >
43- <summary>String</summary>
44-
45- - APPEND
46- - GET
47- - INCRBY
48- - INCR
49- - SET
50- - GETSET
51- - MGET
52- - STRLEN
53- - SETRANGE
54- - DECR
55- - DECRBY
56- - GETRANGE
57- - MSET
58- - INCRBYFLOAT
59- - SUBSTR
60- - STRALGO LCS
61- - GETEX
62- - MSETNX
63- - PSETEX
64- - SETEX
65- - SETNX
66-
67- </details >
68-
69- <details >
70- <summary>Hash</summary>
71-
72- - HGET
73- - HGETALL
74- - HKEYS
75- - HVALS
76- - HSET
77- - HDEL
78- - HEXISTS
79- - HLEN
80- - HSTRLEN
81-
82- </details >
83-
84- <details >
85- <summary>List</summary>
86-
87- - LPUSH
88- - RPUSH
89- - LPOP
90- - RPOP
91- - LLEN
92- - LRANGE
93- - LINDEX
94- - LSET
95- - LREM
96-
97- </details >
98-
99- <details >
100- <summary>Set</summary>
101-
102- - SADD
103- - SMEMBERS
104- - SISMEMBER
105- - SCARD
106- - SDIFF
107- - SINTER
108- - SUNION
109- - SMOVE
110- - SREM
111-
112- </details >
113-
114- <details >
115- <summary>SortedSet</summary>
116-
117- - ZADD
118- - ZSCORE
119-
120- </details >
121-
122- <details >
123- <summary>Pub/Sub</summary>
124-
125- - SUBSCRIBE
126- - UNSUBSCRIBE
127- - PUBLISH
128-
129- </details >
130-
131- <details >
132- <summary>Transactions</summary>
133-
134- - MULTI
135- - EXEC
136- - DISCARD
137- - WATCH
138-
139- </details >
7+ | Feature | Supported? | Supported Commands |
8+ | --------------| ------------| -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9+ | String | ✅ | APPEND - GET - INCRBY - INCR - SET - GETSET - MGET - STRLEN - SETRANGE - DECR - DECRBY - GETRANGE - MSET - INCRBYFLOAT - SUBSTR - STRALGO LCS - GETEX - MSETNX - PSETEX - SETEX - SETNX |
10+ | Hash | ✅ | HGET - HGETALL - HKEYS - HVALS - HSET - HDEL - HEXISTS - HLEN - HSTRLEN |
11+ | List | ✅ | LPUSH - RPUSH - LPOP - RPOP - LLEN - LRANGE - LINDEX - LSET - LREM |
12+ | Set | ✅ | SADD - SMEMBERS - SISMEMBER - SCARD - SDIFF - SINTER - SUNION - SMOVE - SREM |
13+ | SortedSet | ✅ | ZADD - ZSCORE |
14+ | Transactions | ✅ | MULTI - EXEC - DISCARD - WATCH |
15+ | Generic | ✅ | DEL - EXISTS - RENAME - EXPIRE - EXPIREAT - DUMP - RESTORE - TYPE |
16+ | Connection | ✅ | AUTH - ECHO - PING - QUIT - CLIENT ID - CLIENT INFO |
17+ | Server | ✅ | INFO - FLUSHDB - TIME |
18+ | Scripting | ❌ | |
19+ | Pub/Sub | ✅ | SUBSCRIBE - UNSUBSCRIBE - PUBLISH |
20+ | Cluster | ❌ | |
21+ | Geo | ❌ | |
22+ | HyperLogLog | ❌ | |
23+ | Streams | ❌ | |
You can’t perform that action at this time.
0 commit comments