当前位置: 软件>JavaScript软件
Node Redis Protocol
本文导语: Node Redis Protocol 可以你在 Node.js 上操作 Redis 服务器。 示例代码: var redisd = require('redisd'); var server = redisd.createServer(function(command) { console.log('query', command); this.encode(['pim', 'pam']);// the answer }); server.listen(6379, function() { c...