8000 Added EXISTS as a read-only command, which sorts issue #206 · devsnippet/phpredis@8af15d7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8af15d7

Browse files
Added EXISTS as a read-only command, which sorts issue phpredis#206
1 parent 889b2f2 commit 8af15d7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

redis_array_impl.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ void ra_init_function_table(RedisArray *ra) {
100100
add_assoc_bool(ra->z_pure_cmds, "SUNION", 1);
101101
add_assoc_bool(ra->z_pure_cmds, "HVALS", 1);
102102
add_assoc_bool(ra->z_pure_cmds, "TYPE", 1);
103+
add_assoc_bool(ra->z_pure_cmds, "EXISTS", 1);
103104
add_assoc_bool(ra->z_pure_cmds, "LINDEX", 1);
104105
add_assoc_bool(ra->z_pure_cmds, "SCARD", 1);
105106
add_assoc_bool(ra->z_pure_cmds, "LLEN", 1);

0 commit comments

Comments
 (0)
0