@litbees/ts-cache

1.0.0 • Public • Published

NPM Version Package License Build status Coverage

@litbees/ts-cache

Cache Abstraction implementation for Browser & Server platforms.

Table of contents:


Installation

Install the npm package.

# To get the latest stable version and update package.json file:
npm install @litbees/ts-cache --save
# or
yarn add @litbees/ts-cache

CacheManager

Registered CacheManager with your different caches with registerCacheManager(cacheManager: CacheManager) method.

import { registerCacheManager, SimpleCacheManager, MemoryCache } from '@litbees/ts-cache';

registerCacheManager(new SimpleCacheManager([new MemoryCache('myCacheName')]));

Annotations

CacheDefaults

/**
 * Allows the configuration of defaults for `CacheResult`, `CachePut`, `CacheRemove`, and `CacheRemoveAll` at the class level.
 * Without the method level annotations this annotation has no effect.
 * @param cacheName
 */
@CacheDefaults(cacheName: string)

CacheResult

/**
 * When a method annotated with `CacheResult` is invoked a cache key will be generated
 * and *Cache.get(key)* is called before the annotated method actually executes.
 * If a value is found in the cache it is returned and the annotated method is never actually executed.
 * If no value is found the annotated method is invoked and the returned value is stored in the cache with the generated key.
 *
 * @param params (Optional) {cacheName?: string}
 */
@CacheResult(params?: {cacheName?: string})

CachePut

/**
 * When a method annotated with `CachePut` is invoked a cache key will be generated
 * and *Cache.put(key, value)* will be invoked on the specified cache storing the value marked with `CacheValue`.
 *
 * @param params (Optional) {cacheName?: string, afterInvocation: boolean = true}
 */
@CachePut(params?: {cacheName?: string, afterInvocation: boolean = true})

CacheKey

/**
 * Marks a method argument as part of the cache key.
 * If no arguments are marked all arguments are used.
 * The exception is for a method annotated with `CachePut` where the `CacheValue` parameter is never included in the key.
 */
@CacheKey()

CacheValue

/**
 * Marks the parameter to be cached for a method annotated with `CachePut`.
 */
@CacheValue()

CacheRemove

/**
 * When a method annotated with `CacheRemove` is invoked a cache key will be generated
 * and *Cache.remove(key)* will be invoked on the specified cache.
 * The default behavior is to call *Cache.evict(key)* after the annotated method is invoked,
 * this behavior can be changed by setting *`afterInvocation`* to false in which case *Cache.evict(key)*
 * will be called before the annotated method is invoked.
 *
 * @param params (Optional) {cacheName?: string, afterInvocation: boolean = true}
 */
@CacheRemove(params?: {cacheName?: string, afterInvocation: boolean = true})

CacheRemoveAll

/**
 * When a method annotated with `CacheRemoveAll` is invoked all elements in the specified cache will be removed via the *Cache.clear()* method.
 * The default behavior is to call *Cache.clear()* after the annotated method is invoked,
 * this behavior can be changed by setting *`afterInvocation`* to false in which case *Cache.clear()* will be called before the annotated method is invoked.
 *
 * @param params (Optional) {cacheName?: string, afterInvocation: boolean = true}
 */
@CacheRemoveAll(params?: {cacheName?: string, afterInvocation: boolean = true})

Example:

@CacheDefaults('myCacheBean')
class CacheBean {

  @CachePut()
  myMethod(@CacheKey() id: number, @CacheValue() value: any): void {
  ...
  }

  @CacheResult()
  get(id: number): any {
  ...
  }

  @CacheRemove()
  refresh(id: number): void {
  ...
  }

  @CacheRemoveAll()
  refreshAll(): void {
  ...
  }
}

Cache

MemoryCache

Cache in memory

import { MemoryCache } from '@litbees/ts-cache';

new MemoryCache('myCacheName');

StorageCache

Cache in a storage (for browser)

import { StorageCache } from '@litbees/ts-cache';

new StorageCache('myCacheName', window.sessionStorage || window.localStorage);

NoOpCache

No cache, do nothing...

import { NoOpCache } from '@litbees/ts-cache';

new NoOpCache('myCacheName');

Custom implementation

You can create your own implementation. You simply need to implement the Cache interface:

export interface Cache {
  /**
   * Return the cache name.
   */
  readonly name: string;

  /**
   * Return the value to which this cache maps the specified key
   */
  get<T>(key: string): T | null;

  /**
   * Associate the specified value with the specified key in this cache.
   * If the cache previously contained a mapping for this key, the old
   * value is replaced by the specified value.
   */
  put<T>(key: string, value: T): void;

  /**
   * Evict the mapping for this key from this cache if it is present.
   */
  evict(key: string): void;

  /**
   * Remove all mappings from the cache.
   */
  clear(): void;
}

License

© 2021 litbees

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @litbees/ts-cache

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

388 kB

Total Files

70

Last publish

Collaborators

  • npetillon