Commit b7002448 authored by RuoYi's avatar RuoYi

RedisCache的getCacheSet方法会移除元素的bug

parent 2e2882b0
......@@ -158,11 +158,7 @@ public class RedisCache
{
Set<T> dataSet = new HashSet<T>();
BoundSetOperations<String, T> operation = redisTemplate.boundSetOps(key);
Long size = operation.size();
for (int i = 0; i < size; i++)
{
dataSet.add(operation.pop());
}
dataSet = operation.members();
return dataSet;
}
......
......@@ -10,7 +10,7 @@ import com.ruoyi.framework.security.LoginUser;
import com.ruoyi.project.system.domain.SysRole;
/**
* RuoYi首创 自定义权限实现,se取自SpringSecurity首字母
* RuoYi首创 自定义权限实现,ss取自SpringSecurity首字母
*
* @author ruoyi
*/
......
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