@aaqilniz/loopback-rest-cache
v0.0.1
Published
A loopback-next based extension for caching.
Downloads
3
Readme
@aaqilniz/loopback-rest-cache
Installation
Install LoopbackRestCacheComponent using npm
;
$ [npm install | yarn add] @aaqilniz/loopback-rest-cache
Basic Use
Configure and load LoopbackRestCacheComponent in the application constructor as shown below.
import {LoopbackRestCacheComponent, LoopbackRestCacheComponentOptions, DEFAULT__AAQILNIZ_LOOPBACK_REST_CACHE_OPTIONS} from '@aaqilniz/loopback-rest-cache';
// ...
export class MyApplication extends BootMixin(ServiceMixin(RepositoryMixin(RestApplication))) {
constructor(options: ApplicationConfig = {}) {
const opts: LoopbackRestCacheComponentOptions = DEFAULT__AAQILNIZ_LOOPBACK_REST_CACHE_OPTIONS;
this.configure(LoopbackRestCacheComponentBindings.COMPONENT).to(opts);
// Put the configuration options here
});
this.component(LoopbackRestCacheComponent);
// ...
}
// ...
}