Fix unexpected whitespace of the command catalogs in several Redis plugins. (#480)
This commit is contained in:
parent
d357bdef7a
commit
e91514c634
|
|
@ -21,6 +21,7 @@ Release Notes.
|
|||
* Fix tomcat-10x-plugin and add test case to support tomcat7.x-8.x-9.x.
|
||||
* Fix thrift plugin generate duplicate traceid when `sendBase` error occurs
|
||||
* Support keep trace profiling when cross-thread.
|
||||
* Fix unexpected whitespace of the command catalogs in several Redis plugins.
|
||||
|
||||
#### Documentation
|
||||
* Update docs of Tracing APIs, reorganize the API docs into six parts.
|
||||
|
|
|
|||
|
|
@ -51,22 +51,22 @@ public class JedisPluginConfig {
|
|||
"getset",
|
||||
"set",
|
||||
"setbit",
|
||||
"setex ",
|
||||
"setnx ",
|
||||
"setex",
|
||||
"setnx",
|
||||
"setrange",
|
||||
"strlen ",
|
||||
"strlen",
|
||||
"mset",
|
||||
"msetnx ",
|
||||
"msetnx",
|
||||
"psetex",
|
||||
"incr ",
|
||||
"incrby ",
|
||||
"incr",
|
||||
"incrby",
|
||||
"incrbyfloat",
|
||||
"decr ",
|
||||
"decrby ",
|
||||
"append ",
|
||||
"decr",
|
||||
"decrby",
|
||||
"append",
|
||||
"hmset",
|
||||
"hset",
|
||||
"hsetnx ",
|
||||
"hsetnx",
|
||||
"hincrby",
|
||||
"hincrbyfloat",
|
||||
"hdel",
|
||||
|
|
@ -118,7 +118,7 @@ public class JedisPluginConfig {
|
|||
*/
|
||||
public static Set<String> OPERATION_MAPPING_READ = new HashSet<>(Arrays.asList(
|
||||
"getrange",
|
||||
"getbit ",
|
||||
"getbit",
|
||||
"mget",
|
||||
"hvals",
|
||||
"hkeys",
|
||||
|
|
|
|||
|
|
@ -52,22 +52,22 @@ public class JedisPluginConfig {
|
|||
"getset",
|
||||
"set",
|
||||
"setbit",
|
||||
"setex ",
|
||||
"setnx ",
|
||||
"setex",
|
||||
"setnx",
|
||||
"setrange",
|
||||
"strlen ",
|
||||
"strlen",
|
||||
"mset",
|
||||
"msetnx ",
|
||||
"msetnx",
|
||||
"psetex",
|
||||
"incr ",
|
||||
"incrby ",
|
||||
"incr",
|
||||
"incrby",
|
||||
"incrbyfloat",
|
||||
"decr ",
|
||||
"decrby ",
|
||||
"append ",
|
||||
"decr",
|
||||
"decrby",
|
||||
"append",
|
||||
"hmset",
|
||||
"hset",
|
||||
"hsetnx ",
|
||||
"hsetnx",
|
||||
"hincrby",
|
||||
"hincrbyfloat",
|
||||
"hdel",
|
||||
|
|
@ -119,7 +119,7 @@ public class JedisPluginConfig {
|
|||
*/
|
||||
public static Set<String> OPERATION_MAPPING_READ = new HashSet<>(Arrays.asList("get",
|
||||
"getrange",
|
||||
"getbit ",
|
||||
"getbit",
|
||||
"mget",
|
||||
"hvals",
|
||||
"hkeys",
|
||||
|
|
|
|||
|
|
@ -52,22 +52,22 @@ public class LettucePluginConfig {
|
|||
"getset",
|
||||
"set",
|
||||
"setbit",
|
||||
"setex ",
|
||||
"setnx ",
|
||||
"setex",
|
||||
"setnx",
|
||||
"setrange",
|
||||
"strlen ",
|
||||
"strlen",
|
||||
"mset",
|
||||
"msetnx ",
|
||||
"msetnx",
|
||||
"psetex",
|
||||
"incr ",
|
||||
"incrby ",
|
||||
"incr",
|
||||
"incrby",
|
||||
"incrbyfloat",
|
||||
"decr ",
|
||||
"decrby ",
|
||||
"append ",
|
||||
"decr",
|
||||
"decrby",
|
||||
"append",
|
||||
"hmset",
|
||||
"hset",
|
||||
"hsetnx ",
|
||||
"hsetnx",
|
||||
"hincrby",
|
||||
"hincrbyfloat",
|
||||
"hdel",
|
||||
|
|
@ -119,7 +119,7 @@ public class LettucePluginConfig {
|
|||
*/
|
||||
public static Set<String> OPERATION_MAPPING_READ = new HashSet<>(Arrays.asList(
|
||||
"getrange",
|
||||
"getbit ",
|
||||
"getbit",
|
||||
"mget",
|
||||
"hvals",
|
||||
"hkeys",
|
||||
|
|
|
|||
Loading…
Reference in New Issue