2023-12-21 14:46:34 +08:00
|
|
|
import json
|
|
|
|
|
|
|
|
from redis import StrictRedis
|
|
|
|
|
|
|
|
rc = StrictRedis(host='localhost', port=6379, db=0)
|
|
|
|
|
|
|
|
data = {
|
|
|
|
"create_time": 1671796836,
|
|
|
|
"update_time": 1671796836,
|
|
|
|
"remark": "test message",
|
|
|
|
"corp_id": 12345,
|
|
|
|
"vid": 123456789,
|
|
|
|
"msg_type": 1,
|
|
|
|
"to_vid": 987654321,
|
|
|
|
"to_room_id": 1122334455,
|
|
|
|
"send_time": "1671705497",
|
|
|
|
"content": "this is a test message",
|
|
|
|
"aeskey": "123456789abcdefg",
|
|
|
|
"origin_data": {
|
|
|
|
"foo": "bar"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i in range(10):
|
|
|
|
value_new = json.dumps(data)
|
2023-12-21 17:17:07 +08:00
|
|
|
rc.publish("jqr:msg", value_new)
|