![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@convoyr/plugin-cache
Advanced tools
> A cache plugin for [Convoyr](https://github.com/jscutlery/convoyr).
A cache plugin for Convoyr.
This plugin cache network requests using the cache-then-network strategy. First the plugin returns the data from cache, then sends the request, and finally comes with fresh data again. This technique drastically improve UI reactivity.
The plugin requires @convoyr/core
and @convoyr/angular
to be installed.
yarn add @convoyr/plugin-cache
or
npm install @convoyr/plugin-cache
The whole configuration object is optional.
import { ConvoyrModule } from '@convoyr/angular';
import { createCachePlugin } from '@convoyr/plugin-cache';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
HttpClientModule,
ConvoyrModule.forRoot({
plugins: [createCachePlugin()],
}),
],
bootstrap: [AppComponent],
})
export class AppModule {}
You can give a partial configuration object it will be merged with default values.
Property | Type | Default value | Description |
---|---|---|---|
addCacheMetadata | boolean | false | Add cache metadata to the response body. |
storage | Storage | new MemoryStorage() | Storage used to store the cache. |
shouldHandleRequest | RequestCondition | isGetMethodAndJsonResponseType | Predicate function to know which request the plugin should handle. |
Here is an example passing a configuration object.
import { createCachePlugin, MemoryStorage } from '@convoyr/plugin-cache';
@NgModule({
imports: [
ConvoyrModule.forRoot({
plugins: [
createCachePlugin({
addCacheMetadata: true,
storage: new MemoryStorage(),
}),
],
}),
],
})
export class AppModule {}
To know more about the shouldHandleRequest
property check-out the conditional handling section.
You can add cache metadata to the response body and use it in the application. For example you can display something that showup that data are from cache.
Be careful because this option changes the body's shape and breaks existing code that need to access to the response body.
Here is an example showing a response body with addCacheMetadata
set to false
(default).
{ "answer": 42 }
The same response body with addCacheMetadata
set to true
.
{
"data": { "answer": 42 },
"cacheMetadata": {
"createdAt": "2019-11-24T00:00:00.000Z",
"isFromCache": true
}
}
Data are moved in a dedicated object and cache metadata are added.
MemoryStorage
MemoryStorage
optionsProperty | Type | Default value |
---|---|---|
maxSize | `number | string` |
MemoryStorage
max sizeDefault's storage size of the MemoryStorage
is 100 requests. Above this limit, the least recently used response will be removed to free some space.
MemoryStorage
max size can be configured when initializing the storage and the cache plugin.
ConvoyrModule.forRoot({
plugins: [
createCachePlugin({
storage: new MemoryStorage({ maxSize: 2000 }),
}),
],
});
The maxSize
can also be configured using human readable bytes format if a string
is passed, for example:
ConvoyrModule.forRoot({
plugins: [
createCachePlugin({
storage: new MemoryStorage({ maxSize: '2000 b' }),
}),
],
});
Supported units and abbreviations are as follows and are case-insensitive:
b
for byteskb
for kilobytesmb
for megabytesgb
for gigabytestb
for terabytespb
for petabytesYou can use any other kind of storage (e.g. Redis) by implementing the Storage
interface.
FAQs
> A cache plugin for [Convoyr](https://github.com/jscutlery/convoyr).
The npm package @convoyr/plugin-cache receives a total of 2 weekly downloads. As such, @convoyr/plugin-cache popularity was classified as not popular.
We found that @convoyr/plugin-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.