package.dist.src.batchutils.batch-props.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Client SDK for Momento services
The newest version!
import { CacheGet, CacheSet, CacheDelete } from '@gomomento/sdk-core';
export declare const defaultMaxConcurrentRequests = 5;
export declare const defaultTtlSeconds = 60;
export interface BatchFunctionOptions {
maxConcurrentRequests?: number;
}
export type BatchGetOptions = BatchFunctionOptions;
export type BatchGetResponse = Record;
export type BatchSetOptions = BatchFunctionOptions;
export interface BatchSetItem {
key: string | Uint8Array;
value: string | Uint8Array;
ttl?: number;
}
export type BatchSetResponse = Record;
export type BatchDeleteOptions = BatchFunctionOptions;
export type BatchDeleteResponse = Record;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy