UI components library: Cache Strategy Static service
Edit on GitHubThis document explains the Cache Strategy Static service in the Components Library.
Overview
Cache Strategy Static is an Angular Service that adds values to the cache immediately until the expiration date and retrieves them if requested from the cache.
Check out an example usage of the Cache Strategy Static.
Service configuration:
type
—a cache type.expiresIn
—represents a duration as a string. Each component is separated by a space.
<spy-select
[datasource]="{
type: 'http',
...,
cache: {
type: 'static',
expiresIn: '1m 10d 3h',
},
}"
>
</spy-select>
Service registration
Register the service:
declare module '@spryker/cache' {
interface CacheStrategyRegistry {
static: StaticCacheStrategyConfig;
}
}
@NgModule({
imports: [
CacheModule.withStrategies({
static: StaticCacheStrategy,
}),
StaticCacheStrategyModule,
],
})
export class RootModule {}
Interfaces
Below you can find interfaces for the Cache Strategy Static:
/**
* Represents a duration as a string where components are separated by a space
*
* Components:
* - 1-999y—Years
* - 1-12m—Months
* - 1-365d—Days
* - 1-23h—Hours
* - 1-59min—Minutes
* - 1-59s—Seconds
* - 1-59ms—Milliseconds
*
* Examples:
* - 2h 30min
* - 1d 14h
* - 2y
*/
export interface StaticCacheStrategyConfig extends CacheStrategyConfig {
expiresIn: TimeDurationString;
}
export interface CacheStrategyConfig {
type: CacheStrategyType;
namespace?: string;
storage?: PersistenceStrategyType;
// Reserved for types that may have extra configuration
[extraConfig: string]: unknown;
}
export type TimeDurationString = string;
Thank you!
For submitting the form