UNPKG

ioredis

Version:

A robust, performance-focused and full-featured Redis client for Node.js.

22 lines (21 loc) 560 B
/// <reference types="node" /> /// <reference types="node" /> /** * A long-lived HIMPORT fieldset managed by ioredis for the lifetime of a * logical Redis or Cluster client. * * Requires Redis 8.10 or newer. * * @experimental */ export interface HimportFieldset { /** * The name referenced by later `HIMPORT SET` commands. */ readonly name: string | Buffer; /** * Ordered hash field names. Values passed to `HIMPORT SET` are paired with * fields positionally. */ readonly fields: readonly (string | Buffer)[]; }