界面删除设备后同时删除Redis的对应条目,避免其它设备用同样IP登录时出现信息错误

This commit is contained in:
lawrencehj 2021-12-29 18:08:33 +08:00
parent f64016a6c7
commit 21c3904a3f

View File

@ -318,6 +318,15 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
redis.del(key.toString());
}
}
List<Object> deviceCache = redis.scan(String.format("%S%s_%s", VideoManagerConstants.DEVICE_PREFIX,
userSetup.getServerId(),
deviceId));
if (deviceCache.size() > 0) {
for (Object key : deviceCache) {
redis.del(key.toString());
}
}
}
@Override