vw-socket.io-memcached
v0.0.2
Published
Socket.io 1.x memcached adapter
Downloads
6
Maintainers
Readme
socket.io-memcached
Note
This adapter is still under development. Feel free to fork and participate in the development.
How to use
var io = require('socket.io')(3000);
var memcached = require('socket.io-memcached');
io.adapter(memcached('192.168.0.102:11212'));
By running socket.io with the socket.io-memcached
adapter you can run
multiple socket.io instances in different processes or servers that can
all broadcast and emit events to and from each other.
If you need to emit events to socket.io instances from a non-socket.io process, you should use socket.io-emitter.
API
adapter(opts)
Coming soon...