
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
mc-node-redis
Advanced tools
redis客户端node.js版本,支持连接池。
npm i @mc/node-redis;
客户端使用的是ioredis
import Redis from '@mc/node-redis';
// Redis的使用请参考ioredis库
// 哨兵模式使用demo
const redis = new Redis({
sentinels: [{ host: '10.57.17.210', port: 11110 }, { host: '10.57.17.210', port: 11112 }, { host: '10.57.17.210', port: 11113 }, { host: '10.57.17.210', port: 11114 }],
keyPrefix: 'prelude_',
name: 'master1',
password: 'testpass'
});
redis.set('test', 'xxx');
redis.disconnect();
RedisPool(options)构造方法参数说明:
import { RedisPool } from '@mc/node-redis';
// Redis的使用请参考ioredis库
// 哨兵模式使用demo
const pool = new RedisPool({
redisOptions: {
sentinels: [{ host: '10.57.17.210', port: 11110 }, { host: '10.57.17.210', port: 11112 }, { host: '10.57.17.210', port: 11113 }, { host: '10.57.17.210', port: 11114 }],
keyPrefix: 'prelude_',
name: 'master1',
password: 'testpass'
},
poolOptions: { // 默认最小连接数为1,最大连接数为10,根据实际需要设置
min: 2,
max: 10
}
});
pool.acquire().then(client => {
client.set('test', 'xxx');
client.release(); // 使用完后一定要记得释放连接。
});
FAQs
redis客户端node版,基于ioredis与generic-pool
We found that mc-node-redis 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 Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.