
Product
Introducing the Alert Details Page: A Better Way to Explore Alerts
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.
primus-redis-rooms
Advanced tools
primus-redis-rooms is a Redis store for Primus
and primus-rooms.
It takes care of distributing messages to other instances using Redis Pub/Sub.
So, you can have client A connected to server X in room foo and have
server Y emit messages to foo and client A will receive them. Magic.
You can use primus-redis-rooms with a single Redis instance, but it's not
recommended in production environment, since it makes Redis a single point of
failure.
var http = require('http'),
Primus = require('primus'),
PrimusRedisRooms = require('primus-redis-rooms');
var server = http.createServer();
var primus = new Primus(server, {
redis: {
host: 'localhost',
port: 6379,
channel: 'primus' // Optional, defaults to `'primus`'
},
transformer: 'websockets'
});
primus.use('redis', PrimusRedisRooms);
//
// This'll take care of sending the message to all clients in room called
// `our-room`.
//
primus.room('our-room').write('Hello world!');
Redis Sentinel is a failover mechanism built into Redis.
When using Sentinel, Redis client will automatically reconnect to new master server when current one goes down.
var http = require('http'),
Primus = require('primus'),
PrimusRedisRooms = require('primus-redis-rooms');
var server = http.createServer();
var primus = new Primus(server, {
redis: {
sentinel: true,
endpoints: [
{ host: 'localhost', port: 26379 },
{ host: 'localhost', port: 26380 },
{ host: 'localhost', port: 26381 }
],
masterName: 'mymaster'
channel: 'primus' // Optional, defaults to `'primus`'
},
transformer: 'websockets'
});
primus.use('redis', PrimusRedisRooms);
{ room: "foo", data: { our: "bar" } }, only actual data is sent ({ our: "bar" } in this
case).FAQs
Redis-based room system for Primus
We found that primus-redis-rooms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.