You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
405 B
23 lines
405 B
export interface CacheKeys {
|
|
nextMarker: string;
|
|
keys: string[],
|
|
}
|
|
|
|
export interface CacheValue {
|
|
type: string;
|
|
size: number;
|
|
expiration?: Date;
|
|
values: Dictionary<string, any>;
|
|
}
|
|
|
|
export interface CacheRefreshRequest {
|
|
key: string;
|
|
absoluteExpiration?: Date;
|
|
slidingExpiration?: Date;
|
|
}
|
|
|
|
export interface GetCacheKeysRequest {
|
|
prefix?: string;
|
|
marker?: string;
|
|
filter?: string;
|
|
}
|
|
|