Skip to content

Commit 3ef709d

Browse files
committed
chore:readme update and version bump for first npm release
1 parent d95b314 commit 3ef709d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CacheManager.createLRUCache<User>('my-cache', 50, 'memory', 'My Example Cache')
2828
const userCache = CacheManager.createTLRUCache<User>('users', 50, 900, 'redis', 'User Cache', 'user_cache')
2929
```
3030

31-
#### createLRUCache
31+
#### CacheManager.createLRUCache
3232
Creates an LRU cache.
3333

3434
Parameters
@@ -38,7 +38,7 @@ Parameters
3838
* displayName - human friendly name used in health checks. Optional.
3939
* connectionName - Ignored if storage is not 'redis'. The configured Redis connection name to utilize for the cache.
4040

41-
#### createTLRUCache
41+
#### CacheManager.createTLRUCache
4242
Creates a timed LRU (TLRU) cache.
4343

4444
Parameters

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zeytech/cache-adonisjs",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "Provides LRU and Timed LRU in-memory cache with support for Adonis",
55
"main": "build/providers/CacheProvider.js",
66
"repository": {

0 commit comments

Comments
 (0)