Caching is nut a problem!
✅ HTTP Caching
✅ Handles Simultaneous Requests
✅ Automatic & Manual Cache Busting
✅ Hackable
A flexible and straightforward library that caches HTTP requests in Angular
$ npm install @ngneat/cashew
Inject the HttpCacheInterceptorModule
module along with HttpClientModule
into you root module:
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { HttpCacheInterceptorModule } from '@ngneat/cashew';
@NgModule({
imports: [HttpClientModule, HttpCacheInterceptorModule.forRoot()],
bootstrap: [AppComponent]
})
export class AppModule {}
And you're done! Now, when using Angular HttpClient
, you can call the withCache
function, and it'll cache the response:
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { withCache } from '@ngneat/cashew';
@Injectable()
export class UsersService {
constructor(private http: HttpClient) {}
getUsers() {
return this.http.get('api/users', withCache());
}
}
That's simple as that.
Using the library, you might need to change the default behavior of the caching mechanism. You could do that by passing a configuration object to the static forRoot
method of the HttpCacheInterceptorModule
module.
Let's go over each of the configuration options:
Defines the caching behavior. The library supports two different strategies:
explicit
(default) - only caches API requests that explicitly use thewithCache
functionimplicit
- caches API requests that are of typeGET
and the response type isJSON
. You can change this behavior by overriding theHttpCacheGuard
provider. (See the Hackable section)
HttpCacheInterceptorModule.forRoot({
strategy: 'explicit'
});
Define the cache TTL (time to live) in milliseconds: (defaults to one hour)
HttpCacheInterceptorModule.forRoot({
ttl: number
});
By default, the registry returns the original
response object. It can be dangerous if, for some reason, you mutate it. To change this behavior, you can clone the response before getting it:
HttpCacheInterceptorModule.forRoot({
responseSerializer(body) {
return cloneDeep(body);
}
});
Currently, there is no way in Angular to pass metadata
to an interceptor. The withCache
function uses the params
object to pass the config
and removes it afterward in the interceptor. The function receives four optional params that are postfixed with a $
sign so it'll not conflicts with others:
cache$
- Whether to cache the request (defaults totrue
)ttl$
- TTL that will override the globalkey$
- Custom key. (defaults to the request URL including any query params)bucket$
- The bucket in which we save the keys
@Injectable()
export class UsersService {
constructor(private http: HttpClient) {}
getUsers() {
return this.http.get(
'api/users',
withCache({
withCache$: false,
ttl$: 40000,
key$: 'yourkey'
})
);
}
}
In addition to that, you can pass any query parameter that you need:
@Injectable()
export class UsersService {
constructor(private http: HttpClient) {}
getUser(id) {
return this.http.get(
'api/users',
withCache({
id,
ttl$: 40000
})
);
}
}
The CacheManager
provider, exposes an API to update and query the cache registry:
get<T>(key: string): HttpResponse<T>
- Get theHttpResponse
from the cachehas(key: string)
- Returns aboolean
indicates whether the providedkey
exists in the cacheset(key: string, body: any, { ttl, bucket })
- Set manually a new entry in the cachedelete(key: string | RegExp | CacheBucket)
- Delete from the cache
CacheBucket
can be useful when we need to buffer multiple requests and invalidate them at some point. For example:
import { withCache, CacheBucket } from '@ngneat/cashew';
@Injectable()
export class TodosService {
todosBucket = new CacheBucket();
constructor(private http: HttpClient, private manager: HttpCacheManager) {}
getTodo(id) {
return this.http.get(
`todos/${id}`,
withCache({
bucket$: this.todosBucket
})
);
}
invalidateTodos() {
this.manager.delete(this.todosBucket);
}
}
Now when we call the invalidateTodos
method, it'll automatically delete all the ids
that it buffered. CacheBucket
also exposes the add
, has
, delete
, and clear
methods.
HttpCacheStorage
- The storage to use: (defaults to in-memory storage)
class HttpCacheStorage {
abstract has(key: string): boolean;
abstract get(key: string): HttpResponse<any>;
abstract set(key: string, response: HttpResponse<any>): void;
abstract delete(key?: string | RegExp): void;
}
KeySerializer
- Generate the cache key based on the request: (defaults torequest.urlWithParams
)
export abstract class KeySerializer {
abstract serialize(request: HttpCacheRequest): string;
}
HttpCacheGuard
- When using theimplicit
strategy it first verifies thatcanActivate
is truthy:
export abstract class HttpCacheGuard {
abstract canActivate(request: HttpCacheRequest): boolean;
}
It defaults to request.method === 'GET' && request.responseType === 'json'
.
TTLManager
- A class responsible for managing the requests TTL:
abstract class TTLManager {
abstract isValid(key: string): boolean;
abstract set(key: string, ttl?: number): void;
abstract delete(key?: string | RegExp): void;
}
Thanks goes to these wonderful people (emoji key):
Netanel Basal 💻 🎨 📖 🤔 🚇 |
Itay Oded 💻 |
Shahar Kazaz 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!