Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
node-redis-connection-pool
Advanced tools
Simplistic node redis connection pool ready can scale with generic-pool support
Simplistic node redis connection pool ready can scale with generic-pool support
node >= 8
This module requires nodejs v8 or laterredis >= 4
This module requires redis v4 or above as it has dependencies on UNLINK
and redis.replicate_commands()
for pattern deletion. npm install node-redis-connection-pool
var RedisPool = require("node-redis-connection-pool");
var pool = new RedisPool();
pool.sendCommand("set", ["key", "value"])
pool.acquire()
.then(conn => {
// Do some work
// At the end release the conn back to the pool
pool.release(conn)
});
options
object propertiesName | Type | Description |
---|---|---|
name | string |
Name your pool |
redisOptions | object |
opts from node_redis#options-object-properties |
poolOptions | object |
opts from node-pool#createpool |
logger | object |
Inject your custom logger |
bash test.sh
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
These amazing people are maintaining this project:
No sponsors yet! Will you be the first?
These amazing people have contributed to/reviewed this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
3.1.0 - 2021-04-27
FAQs
Simplistic node redis connection pool ready can scale with generic-pool support
The npm package node-redis-connection-pool receives a total of 58 weekly downloads. As such, node-redis-connection-pool popularity was classified as not popular.
We found that node-redis-connection-pool 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.