File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed
java/client/src/main/java/glide/api/models Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -23,26 +23,34 @@ public enum RequestType {
23
23
24
24
/** CONNECTION MANAGEMENT COMMANDS * */
25
25
26
- /** */
26
+ /**
27
+ * Ping the Redis server.
28
+ *
29
+ * @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
30
+ */
27
31
PING ,
28
32
29
33
/** SERVER MANAGEMENT COMMANDS * */
30
34
31
- /** */
35
+ /**
36
+ * Get information and statistics about the Redis server
37
+ *
38
+ * @see <a href="https://redis.io/commands/info/">redis.io</a> for details.
39
+ */
32
40
INFO ,
33
41
34
42
/** STRING COMMANDS * */
35
43
36
44
/**
37
- * Get the value of key.
45
+ * Get the value associated with the given key, or null if no such value exists .
38
46
*
39
- * @see: < href=https://redis.io/commands/get/>command reference </a>
47
+ * @see <a href=" https://redis.io/commands/get/">redis.io </a> for details.
40
48
*/
41
49
GET_STRING ,
42
50
/**
43
- * Set key to hold the string value.
51
+ * Set the given key with the given value.
44
52
*
45
- * @see: < href=https://redis.io/commands/set/>command reference </a>
53
+ * @see <a href=" https://redis.io/commands/set/">redis.io </a> for details.
46
54
*/
47
55
SET_STRING ,
48
56
}
You can’t perform that action at this time.
0 commit comments