使用nodejs作为服务器,使用Python发出socket.io消息

时间:2016-08-30 15:59:54

标签: python node.js redis socket.io msgpack

我需要一点帮助。

我正在做测试以学习如何构建实时网络,所以我将node.js与socket.io一起使用。一切都很有趣但是如果我尝试在通道中发布一些消息,这个消息是具有不同节点或javascript的不同源的侦听节点,则会崩溃。

服务器端:(发出外部发布时失败的节点)

var app = require('express')();
var http = require('http').Server(app);

var pub = require('redis').createClient(6379, 'localhost', {detect_buffers: true, return_buffers: false});
var sub = require('redis').createClient(6379, 'localhost', {return_buffers: true});

var io = require('socket.io')(http);

var redis = require('socket.io-redis');
io.adapter(redis({pubClient: pub, subClient: sub, host: '127.0.0.1', port: 6379}));


io.on('connection', function(socket){
  socket.on('chat message', function(msg){
    io.emit('chat message', msg);
    console.log("something happens: " + msg);
  });
});


http.listen(3000, function(){
  console.log('listening on *:3000');
});

您不需要客户端代码来尝试它,只需输入此代码并使用节点运行它。当它正在运行时,尝试直接使用Redis在频道上发布,看看会发生什么。

Error: 5 trailing bytes
    at Object.decode (.../node/node_modules/msgpack-js-v5/msgpack.js:266:47)
    at Redis.onmessage (.../node/node_modules/socket.io-redis/index.js:93:24)
    at emitTwo (events.js:87:13)
    at RedisClient.emit (events.js:172:7)
    at RedisClient.return_reply (.../node/node_modules/redis/index.js:654:22)
    at .../node/node_modules/redis/index.js:307:18
    at nextTickCallbackWith0Args (node.js:419:9)
    at process._tickCallback (node.js:348:13)
    enter code here

有人明白为什么会这样吗?我该如何解决?

谢谢!

新评论: 感谢robertklep,我知道它需要使用相同的协议,因此我使用它编写了一个简单的Python脚本,但它失败了同样的错误。

import redis
import msgpack
text_packed = msgpack.packb('refresh', use_bin_type=True)
r = redis.StrictRedis(host='localhost', port=6379, db=0)
r.publish('socket.io#/#', text_packed)

我也试过这种方法,我认为我传递了一些错误:

from emitter import Emitter
io = Emitter(dict(host='localhost', port=6379))
io.Emit('chat message', "message from python!")
# or specificating the room
io.To("socket.io#/#").Emit('chat message', "message from python!")

在这种情况下,没有任何东西到达redis。

1 个答案:

答案 0 :(得分:0)

socket.io-redis在Redis上使用msgpack来发布/发送消息,因此您不能只是将常规字符串推送到它并期望它能够正常工作。您正在使用的客户端需要使用相同的协议。