adonis-cache
Advanced tools
+1
-1
| { | ||
| "name": "adonis-cache", | ||
| "version": "0.1.0", | ||
| "version": "0.1.1", | ||
| "description": "Cache provider for AdonisJs framework", | ||
@@ -5,0 +5,0 @@ "scripts": { |
+4
-4
@@ -284,6 +284,6 @@ # AdonisCache | ||
| ``` | ||
| cache.hit | ||
| cache.missed | ||
| cache.key.forgotten | ||
| cache.key.written | ||
| Cache.hit | ||
| Cache.missed | ||
| Cache.keyForgotten | ||
| Cache.keyWritten | ||
| ``` |
@@ -28,4 +28,4 @@ 'use strict' | ||
| CacheHit.EVENT = 'cache.hit' | ||
| CacheHit.EVENT = 'Cache.hit' | ||
| module.exports = CacheHit |
@@ -26,4 +26,4 @@ 'use strict' | ||
| CacheMissed.EVENT = 'cache.missed' | ||
| CacheMissed.EVENT = 'Cache.missed' | ||
| module.exports = CacheMissed |
@@ -26,4 +26,4 @@ 'use strict' | ||
| KeyForgotten.EVENT = 'key.forgotten' | ||
| KeyForgotten.EVENT = 'Cache.keyForgotten' | ||
| module.exports = KeyForgotten |
@@ -30,4 +30,4 @@ 'use strict' | ||
| KeyWritten.EVENT = 'key.written' | ||
| KeyWritten.EVENT = 'Cache.keyWritten' | ||
| module.exports = KeyWritten |
63931
0.01%