Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
aedes-persistence-redis
Advanced tools
Aedes Persistence, backed by Redis.
See aedes-persistence for the full API, and Aedes for usage.
npm install aedes aedes-persistence-redis --save
Please check UPGRADE.md when upgrading from a previous version.
Creates a new instance of aedes-persistence-redis. It takes all the same options of ioredis, which is used internally to connect to Redis.
This constructor creates two connections to Redis.
Example:
aedesPersistenceRedis({
port: 6379, // Redis port
host: '127.0.0.1', // Redis host
family: 4, // 4 (IPv4) or 6 (IPv6)
password: 'auth',
db: 0,
maxSessionDelivery: 100, // maximum offline messages deliverable on client CONNECT, default is 1000
packetTTL: function (packet) { // offline message TTL, default is disabled
return 10 //seconds
}
})
Alternatively, you can pass in an externally created Redis connection using the
conn
option. This can be useful when connecting to a Redis cluster, for example.
Example:
aedesPersistenceRedis({
conn: new Redis.Cluster([{
port: 6379,
host: '127.0.0.1'
}, {
port: 6380,
host: '127.0.0.1'
}]),
cluster: true
})
The same as above but with cluster
option:
aedesPersistenceRedis({
cluster: [{
port: 6379,
host: '127.0.0.1'
}, {
port: 6380,
host: '127.0.0.1'
}]
})
v4 has changed the subscriptions key schema to enhance performance. Please check related PR for more details.
MIT
FAQs
Aedes persistence, backed by redis
The npm package aedes-persistence-redis receives a total of 1,922 weekly downloads. As such, aedes-persistence-redis popularity was classified as popular.
We found that aedes-persistence-redis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.