Skip to content

Commit

Permalink
chore:readme update and version bump for first npm release
Browse files Browse the repository at this point in the history
  • Loading branch information
skrenek committed Sep 8, 2021
1 parent d95b314 commit 3ef709d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CacheManager.createLRUCache<User>('my-cache', 50, 'memory', 'My Example Cache')
const userCache = CacheManager.createTLRUCache<User>('users', 50, 900, 'redis', 'User Cache', 'user_cache')
```

#### createLRUCache
#### CacheManager.createLRUCache
Creates an LRU cache.

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

#### createTLRUCache
#### CacheManager.createTLRUCache
Creates a timed LRU (TLRU) cache.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zeytech/cache-adonisjs",
"version": "1.0.13",
"version": "1.0.14",
"description": "Provides LRU and Timed LRU in-memory cache with support for Adonis",
"main": "build/providers/CacheProvider.js",
"repository": {
Expand Down

0 comments on commit 3ef709d

Please sign in to comment.