-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#86: Accept lowercase options for SET
Summary: Redis supports lowercase options, and we don't. This fix addresses the issue. Test Plan: Before the change: 127.0.0.1:6379> set a 1 ex 1 (error) ERR set: Unidentified argument ex found while parsing set command 127.0.0.1:6379> set a 1 EX 1 OK 127.0.0.1:6379> After the change: 127.0.0.1:6379> set a 1 ex 1 OK 127.0.0.1:6379> set a 1 EX 1 OK Reviewers: karthik, pritam.damania, sergei, amitanand Reviewed By: amitanand Subscribers: kannan, ybase Differential Revision: https://phabricator.dev.yugabyte.com/D4292
- Loading branch information
Showing
3 changed files
with
41 additions
and
5 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
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