Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cache-manager

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cache-manager - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

3

examples/redis_example/redis_store.js

@@ -42,3 +42,4 @@ /**

conn.get(key, function (err, result) {
if (err) { pool.release(conn); return cb(err); }
pool.release(conn);
if (err) { return cb(err); }
cb(null, JSON.parse(result));

@@ -45,0 +46,0 @@ });

@@ -0,1 +1,4 @@

- 0.1.3 2013-10-31
Fixing unreleased connection in redis example.
- 0.1.2 2013-10-13

@@ -2,0 +5,0 @@ Wrapping synchronous memory cache callbacks in process.nextTick() for the purists.

{
"name": "cache-manager",
"version": "0.1.2",
"version": "0.1.3",
"description": "Cache module for Node.js",

@@ -15,2 +15,3 @@ "main": "index.js",

"cache",
"redis",
"lru-cache",

@@ -17,0 +18,0 @@ "memory cache",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc