Commit 7bd9e610 by yanru

修改UpdateRedisRest方法中删除指定key缓存时,对keys值的拼接

parent 23f90d50
...@@ -85,7 +85,7 @@ public class RedisRsetController { ...@@ -85,7 +85,7 @@ public class RedisRsetController {
//先删除指定key缓存 //先删除指定key缓存
String keys=""; String keys="";
if(null!=type && "null"!=type){ if(null!=type && "null"!=type){
keys=ssdw+"_"+type+"*"; keys=ssdw+":"+type+"*";
}else{ }else{
keys=ssdw+"*"; keys=ssdw+"*";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment