forked from fanchaoo/hahu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedisKey.java
More file actions
47 lines (37 loc) · 1.72 KB
/
RedisKey.java
File metadata and controls
47 lines (37 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.fc.util;
public class RedisKey {
// 某收藏夹收藏了哪些回答
public static final String COLLECT = ":collect";
// 某回答被哪些收藏夹收藏
public static final String COLLECTED = ":collected";
// 某人关注哪些人
public static final String FOLLOW_PEOPLE = ":follow_people";
// 某人被哪些人关注
public static final String FOLLOWED_PEOPLE = ":followed_people";
// 某人关注哪些话题
public static final String FOLLOW_TOPIC = ":follow_topic";
// 某话题被哪些人关注
public static final String FOLLOWED_TOPIC = ":followed_topic";
// 某人关注哪些问题
public static final String FOLLOW_QUESTION = ":follow_question";
// 某问题被哪些人关注
public static final String FOLLOWED_QUESTION = ":followed_question";
// 某人关注哪些收藏夹
public static final String FOLLOW_COLLECTION = ":follow_collection";
// 某收藏夹被哪些人关注
public static final String FOLLOWED_COLLECTION = ":followed_collection";
// 某人点赞了哪些回答
public static final String LIKE_ANSWER = ":like_answer";
// 某回答被哪些人点赞
public static final String LIKED_ANSWER = ":liked_answer";
// 某人点赞了哪些某问题评论
public static final String LIKE_QUESTION_COMMENT = ":like_question_answer";
// 某问题评论被哪些人点赞
public static final String LIKED_QUESTION_COMMENT = ":liked_question_answer";
// 某人点赞了哪些回答评论
public static final String LIKE_ANSWER_COMMENT = ":like_answer_comment";
// 某回答评论被哪些人点赞
public static final String LIKED_ANSWER_COMMENT = ":liked_answer_comment";
// 某问题被浏览次数
public static final String QUESTION_SCANED_COUNT = ":question_scaned_count";
}