我无法找到 NodeBB 将喜欢特定帖子的用户列表存储在哪里。例如,考虑以下数据结构:-
> db.objects.find({_key:"post:2341"}).pretty()
{
"_id" : ObjectId("5547af3f65190fe2122d0b3c"),
"_key" : "post:2341",
"edited" : 0,
"pid" : 2341,
"content" : "content of this post",
"tid" : 2543,
"timestamp" : 1412304172707,
"deleted" : 0,
"editor" : "",
"uid" : 747,
"toPid" : 19999,
"votes" : 0,
"reputation" : 5
}
上面说 Post ID2341
具有5
声誉,这意味着它受到5
用户的喜欢。但是它在哪里存储这些是喜欢这个特定帖子的用户 ID?