|
@@ -92,11 +92,42 @@ public class RedisMessageHelper extends AbstractMessageHelper{
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public void writeMessage(String timelineTable, String timelineId, ChatBody chatBody) {
|
|
public void writeMessage(String timelineTable, String timelineId, ChatBody chatBody) {
|
|
|
|
+ this.onlySaveTwentyFourHoursData(timelineTable,timelineId);
|
|
double score = chatBody.getCreateTime();
|
|
double score = chatBody.getCreateTime();
|
|
RedisCacheManager.getCache(timelineTable).sortSetPush(timelineId, score, chatBody);
|
|
RedisCacheManager.getCache(timelineTable).sortSetPush(timelineId, score, chatBody);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 只保存24小时内的数据,其余数据删除
|
|
|
|
+ * @param timelineTable
|
|
|
|
+ * @param timelineId
|
|
|
|
+ * @return {@link }
|
|
|
|
+ * @author Darren
|
|
|
|
+ * @date 2020/2/15 15:37
|
|
|
|
+ */
|
|
|
|
+ private void onlySaveTwentyFourHoursData(String timelineTable, String timelineId){
|
|
|
|
+ //获取当前时间毫秒数
|
|
|
|
+ long currentTimeMillis = System.currentTimeMillis();
|
|
|
|
+ double endTime = Double.longBitsToDouble(currentTimeMillis);
|
|
|
|
+ //当前时间 24小时前的时间毫秒数
|
|
|
|
+ long twentyFourHoursBeforeTimeMillis = currentTimeMillis - 24L * 60L * 60L * 1000L;
|
|
|
|
+ double beginTime = Double.longBitsToDouble(twentyFourHoursBeforeTimeMillis);
|
|
|
|
+ //获取24小时内的数据
|
|
|
|
+ List<String> messages = RedisCacheManager.getCache(timelineTable).sortSetGetAll(timelineId, beginTime, endTime);
|
|
|
|
+ //删除全部数据
|
|
|
|
+ RedisCacheManager.getCache(timelineTable).remove(timelineId);
|
|
|
|
+ //保存24小时内的数据
|
|
|
|
+ if(CollectionUtils.isNotEmpty(messages)){
|
|
|
|
+ List<ChatBody> chatBodies = JsonKit.toArray(messages, ChatBody.class);
|
|
|
|
+ Iterator<ChatBody> it = chatBodies.iterator();
|
|
|
|
+ while(it.hasNext()){
|
|
|
|
+ ChatBody data = it.next();
|
|
|
|
+ storeCache.sortSetPush(timelineId,data.getCreateTime(),data);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 移除redis中 需要撤销的消息
|
|
* 移除redis中 需要撤销的消息
|
|
* @param cancelMessageReqBody
|
|
* @param cancelMessageReqBody
|
|
* @return {@link }
|
|
* @return {@link }
|