You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
package com.lx.common.contant;
|
|
|
|
|
|
|
|
|
|
public class RedisKey {
|
|
|
|
|
|
|
|
|
|
public final static String IM_CACHE = "im:cache:";
|
|
|
|
|
|
|
|
|
|
public final static String IM_CACHE_FRIEND = IM_CACHE+"friend";
|
|
|
|
|
|
|
|
|
|
public final static String IM_CACHE_GROUP = IM_CACHE+"group";
|
|
|
|
|
|
|
|
|
|
public final static String IM_CACHE_GROUP_MEMBER = IM_CACHE+"groupMember";
|
|
|
|
|
|
|
|
|
|
public final static String IM_USER_SERVER_ID = "im:user_server_id:";
|
|
|
|
|
|
|
|
|
|
public final static String IM_UNREAD_MESSAGE = "im:unread_msg:";
|
|
|
|
|
|
|
|
|
|
public final static String IM_ALREADY_READED_MESSAGE = "im:already_read_msg";
|
|
|
|
|
}
|