Install LoopbackRestCacheComponent using npm
;
$ [npm install | yarn add] loopback-rest-cache
Configure and load LoopbackRestCacheComponent in the application constructor as shown below.
import {LoopbackRestCacheComponent, LoopbackRestCacheComponentOptions, DEFAULT_LOOPBACK_REST_CACHE_OPTIONS} from 'loopback-rest-cache';
// ...
export class MyApplication extends BootMixin(ServiceMixin(RepositoryMixin(RestApplication))) {
constructor(options: ApplicationConfig = {}) {
const opts: LoopbackRestCacheComponentOptions = DEFAULT_LOOPBACK_REST_CACHE_OPTIONS;
this.configure(LoopbackRestCacheComponentBindings.COMPONENT).to(opts);
// Put the configuration options here
});
this.component(LoopbackRestCacheComponent);
// ...
}
// ...
}