Hello everyone
I want to be my forum manager
Watch users' chat
Do I have a way to do that?
editing:
I saw this issue here
Where is the chat messages stored?
-
They are stored in rooms, and each user has their own list of message ids. So if you have the
roomId
and auid
then you can get the list of message ids from the sorted set'uid:' + uid + ':chat:room:' + roomId + ':mids'
This sorted set contains message ids, to get the actual message data you need to load them frommessage:<mid>
.