|
@@ -92,21 +92,19 @@ public class IMChatAsyncChatMessageProcessor extends DefaultAsyncChatMessageProc
|
|
|
* @date 2020/2/18 21:02
|
|
|
*/
|
|
|
private void extendRedisData(ChatBody chatBody, ChannelContext channelContext){
|
|
|
- String userId = chatBody.getFrom();
|
|
|
- String groupId = chatBody.getGroup_id();
|
|
|
ImSessionContext imSessionContext = (ImSessionContext)channelContext.getAttribute();
|
|
|
Client client = imSessionContext.getClient();
|
|
|
if(client != null) {
|
|
|
User onlineUser = client.getUser();
|
|
|
if(onlineUser != null){
|
|
|
- userCache.expire(userId + SUBFIX + TERMINAL + SUBFIX + onlineUser.getTerminal(),TIME_OUT);
|
|
|
+ userCache.expire(chatBody.getFrom() + SUBFIX + TERMINAL + SUBFIX + onlineUser.getTerminal(),TIME_OUT);
|
|
|
}
|
|
|
}
|
|
|
- userCache.expire( userId + SUBFIX + GROUP,TIME_OUT);
|
|
|
- userCache.expire(userId + SUBFIX + INFO,TIME_OUT);
|
|
|
- userCache.expire(userId + SUBFIX + FRIENDS,TIME_OUT);
|
|
|
- groupCache.expire(groupId + SUBFIX + USER,TIME_OUT);
|
|
|
- groupCache.expire(groupId + SUBFIX + INFO,TIME_OUT);
|
|
|
+ userCache.expire( chatBody.getFrom() + SUBFIX + GROUP,TIME_OUT);
|
|
|
+ userCache.expire(chatBody.getFrom() + SUBFIX + INFO,TIME_OUT);
|
|
|
+ userCache.expire(chatBody.getFrom() + SUBFIX + FRIENDS,TIME_OUT);
|
|
|
+ groupCache.expire(chatBody.getGroup_id() + SUBFIX + USER,TIME_OUT);
|
|
|
+ groupCache.expire(chatBody.getGroup_id() + SUBFIX + INFO,TIME_OUT);
|
|
|
}
|
|
|
|
|
|
/**
|