Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
fs-cache-node
Advanced tools
> This is a Cache class implemented in TypeScript that provides functionality for caching data into file/s with TTL.
This is a Cache class implemented in TypeScript that provides functionality for caching data into file/s with TTL.
yarn add fs-cache-node // npm i --save fs-cache-node
The Cache class can be used as follows:
import { Cache } from "fs-cache-node";
const cache = new Cache({ path: "/path/to/cache/directory" });
await cache.set("key", "value");
const value = await cache.get("key");
constructor(opt: CacheOption)
The constructor takes an object of type CacheOption as its parameter. It initializes a new instance of the Cache class with the specified options.
exists(key: Key): Promise<string | null>
This method checks if the specified key exists in the cache. If it does, the method returns the key. If it does not, the method returns null.
remember<T>(key: Key, seconds: number | undefined, callback: Callback<T>): Promise<T>
This method checks if the specified key exists in the cache. If it does, the method returns the cached value. If it does not, the method calls the specified callback function to get the value, caches it, and returns it.
rememberForever<T>(key: Key, callback: Callback<T>): Promise<T>
This method is similar to the remember method, but it caches the value forever.
clean(): Promise<void>
This method clears the cache.
remove(key: Key): Promise<Cache>
This method removes the specified key from the cache.
set(key: Key, value: unknown, config: SetOption = {}): Promise<void>
This method adds the specified key and value to the cache. It takes an optional configuration object that allows you to specify a time-to-live (TTL) value for the cached data.
get(key: Key, def?: any): Promise<any>
This method retrieves the value associated with the specified key from the cache. If the key does not exist in the cache, the method returns the default value specified in the second parameter.
CacheOption
An interface that specifies the options that can be passed to the constructor of the Cache class.
interface CacheOption {
path: string;
ttl?: number; // seconds
serializer?: Serializer;
driver?: Driver;
}
Data<T>
An interface that specifies the shape of the cache data.
interface Data<T> {
[key: string]: [T] | [T, number];
}
Serializer
Custom serializer like import serializer form 'v8'
or import serializer from 'bson'
export interface Serializer {
deserialize(raw: Buffer): Data<unknown>;
serialize(data: unknown): Buffer | string;
}
Driver
File system driver
export interface Driver {
read(filename: string): Promise<Buffer>;
write(filename: string, content: Buffer | string): Promise<boolean>;
}
SetOption
An interface that specifies the configuration options that can be passed to the set method of the Cache class.
interface SetOption {
ttl?: number;
}
Key
A type that represents the cache key. It can be either a string or a number.
type Key = string | number;
Callback<T>
A type that represents a callback function that can be used with the remember
and rememberForever
methods of the Cache class.
type Callback<T> = (cache: Cache) => PromiseLike<T> | T;
This is same but synchronous.
The Cache class can be used as follows:
import { Cache } from "fs-cache-node/sync";
const cache = new Cache({ path: "/path/to/cache/directory" });
cache.set("key", "value");
const value = cache.get("key");
constructor(opt: CacheOption)
The constructor takes an object of type CacheOption as its parameter. It initializes a new instance of the Cache class with the specified options.
exists(key: Key): string | null
This method checks if the specified key exists in the cache. If it does, the method returns the key. If it does not, the method returns null.
remember<T>(key: Key, seconds: number | undefined, callback: Callback<T>): T
This method checks if the specified key exists in the cache. If it does, the method returns the cached value. If it does not, the method calls the specified callback function to get the value, caches it, and returns it.
rememberForever<T>(key: Key, callback: Callback<T>): T
This method is similar to the remember method, but it caches the value forever.
clean(): void
This method clears the cache.
remove(key: Key): Cache
This method removes the specified key from the cache.
set(key: Key, value: unknown, config: SetOption = {}): void
This method adds the specified key and value to the cache. It takes an optional configuration object that allows you to specify a time-to-live (TTL) value for the cached data.
get(key: Key, def?: any): any
This method retrieves the value associated with the specified key from the cache. If the key does not exist in the cache, the method returns the default value specified in the second parameter.
CacheOption
An interface that specifies the options that can be passed to the constructor of the Cache class.
interface CacheOption {
path: string;
ttl?: number;
serializer?: Serializer;
}
Callback<T>
A type that represents a callback function that can be used with the remember
and rememberForever
methods of the Cache class.
type Callback<T> = (cache: Cache) => T;
FAQs
> This is a Cache class implemented in TypeScript that provides functionality for caching data into file/s with TTL.
We found that fs-cache-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.