cache-manager
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
58313
1139