🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

adonis-cache

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonis-cache - npm Package Compare versions

Comparing version
0.1.1
to
0.1.2
+1
-1
package.json
{
"name": "adonis-cache",
"version": "0.1.1",
"version": "0.1.2",
"description": "Cache provider for AdonisJs framework",

@@ -5,0 +5,0 @@ "scripts": {

@@ -122,3 +122,3 @@ # AdonisCache

```javascript
value = yield Cache.store('file').get('foo')
value = yield Cache.store('database').get('foo')

@@ -125,0 +125,0 @@ yield Cache.store('redis').put('bar', 'baz', 10)

@@ -160,3 +160,3 @@ 'use strict'

forever (key, value) {
return this.put(key, Util.serialize(value), 5256000)
return this.put(key, value, 5256000)
}

@@ -163,0 +163,0 @@