socket.io-adapter-postgres
Derived from socket.io-redis.
How to use
const io = 3000;const postgres = ;io;
By running socket.io with the socket.io-adapter-postgres
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(uri[, opts])
uri
is a string like localhost:5432
where your PostgreSQL server
is located. For a list of options see below.
adapter(opts)
The following options are allowed:
key
: the name of the key to pub/sub events on as prefix (socket.io
)pubClient
: optional, the pg.Pool to publish events onsubClient
: optional, the pg.Client to subscribe to events onrequestsTimeout
: optional, after this timeout the adapter will stop waiting from responses to request (1000ms
)
If you decide to supply pubClient
and subClient
, make sure you use
pg as a client or one
with an equivalent API.
PostgresAdapter
The PostgreSQL adapter instances expose the following properties
that a regular Adapter
does not
uid
prefix
pubClient
subClient
requestsTimeout
PostgresAdapter#clients(rooms:Array, fn:Function)
Returns the list of client IDs connected to rooms
across all nodes. See Namespace#clients(fn:Function)
ioadapter; ioadapter; // you can also use io;
PostgresAdapter#clientRooms(id:String, fn:Function)
Returns the list of rooms the client with the given ID has joined (even on another node).
ioadapter;
PostgresAdapter#allRooms(fn:Function)
Returns the list of all rooms.
ioadapter;
PostgresAdapter#remoteJoin(id:String, room:String, fn:Function)
Makes the socket with the given id join the room. The callback will be called once the socket has joined the room, or with an err
argument if the socket was not found.
ioadapter;
PostgresAdapter#remoteLeave(id:String, room:String, fn:Function)
Makes the socket with the given id leave the room. The callback will be called once the socket has left the room, or with an err
argument if the socket was not found.
ioadapter;
PostgresAdapter#remoteDisconnect(id:String, close:Boolean, fn:Function)
Makes the socket with the given id to get disconnected. If close
is set to true, it also closes the underlying socket. The callback will be called once the socket was disconnected, or with an err
argument if the socket was not found.
ioadapter;
PostgresAdapter#customRequest(data:Object, fn:Function)
Sends a request to every nodes, that will respond through the customHook
method.
// on every nodeioadapter { ;} // thenioadapter;
Client error handling
Access the pubClient
and subClient
properties of the
PostgreSQL Adapter instance to subscribe to its error
event:
const postgres = ;const adapter = ;adapterpubClient;adapterpubClient;adaptersubClient;
The errors emitted from pubClient
and subClient
will
also be forwarded to the adapter instance:
const io = 3000;const redis = ;io;ioadapter;
Custom client (eg: with authentication)
If you need to create a redisAdapter to a redis instance that has a password, use pub/sub options instead of passing a connection string.
const redis = createClient;const adapter = ;const pub = ;const sub = ;io;
ioredis client
Withconst io = 3000;const Redis = ; const cluster = port: 6380 host: '127.0.0.1' port: 6381 host: '127.0.0.1' ; const adapter = ;io;
Protocol
The socket.io-redis
adapter broadcasts and receives messages on particularly named Redis channels. For global broadcasts the channel name is:
prefix + '#' + namespace + '#'
In broadcasting to a single room the channel name is:
prefix + '#' + namespace + '#' + room + '#'
prefix
: The base channel name. Default value issocket.io
. Changed by settingopts.key
inadapter(opts)
constructornamespace
: See https://github.com/socketio/socket.io#namespace.room
: Used if targeting a specific room.
A number of other libraries adopt this protocol including:
License
MIT