HTTP Caching
Switch
Enable caching for the service:
crudService.enableCache(method : UniversalMethod = 'GET', lifetime : number = 2000) : thisDisable caching for the service:
crudService.disableCache() : thisFlush
Flush all caches of the service:
crudService.flush() : thisFlush a single cache by its urlWithParams for enabled services:
cacheService.flush(urlWithParams : string) : thisFlush many caches by their url for enabled services:
cacheService.flushMany(url : string) : thisFlush all caches for enabled services:
cacheService.flushAll() : thisObserve
Observe a single cache by its urlWithParams for enabled services:
Observe many caches by their url for enabled services:
Observe all caches for enabled services:
Last updated