Skip to content

Latest commit

 

History

History
130 lines (91 loc) · 3.98 KB

File metadata and controls

130 lines (91 loc) · 3.98 KB

API Reference

Table of Contents

Util (preflight class)

No description

Constructor

new(): Util

Properties

No properties

Methods

Signature Description
static inflight newRedisClient(url: str, redisPassword: str): IRedisClient No description

Redis (preflight class)

No description

Constructor

new(): Redis

Properties

No properties

Methods

Signature Description
inflight del(key: str): void? No description
inflight get(key: str): str? No description
inflight hGet(key: str, field: str): str? No description
inflight hSet(key: str, field: str, value: str): void? No description
inflight sAdd(key: str, value: str): void? No description
inflight sMembers(key: str): Array? No description
inflight set(key: str, value: str): void? No description
inflight url(): str No description

Redis_sim (preflight class)

No description

Constructor

new(): Redis_sim

Properties

No properties

Methods

Signature Description
inflight del(key: str): void No description
inflight get(key: str): str? No description
inflight hGet(key: str, field: str): str? No description
inflight hSet(key: str, field: str, value: str): void No description
inflight sAdd(key: str, value: str): void No description
inflight sMembers(key: str): Array? No description
inflight set(key: str, value: str): void No description
inflight url(): str No description

IRedis (interface)

No description

Properties

No properties

Methods

Signature Description
inflight del(key: str): void No description
inflight get(key: str): str? No description
inflight hGet(key: str, field: str): str? No description
inflight hSet(key: str, field: str, value: str): void No description
inflight sAdd(key: str, value: str): void No description
inflight sMembers(key: str): Array? No description
inflight set(key: str, value: str): void No description
inflight url(): str No description

IRedisClient (interface)

No description

Properties

No properties

Methods

Signature Description
inflight connect(): void No description
inflight del(key: str): void No description
inflight disconnect(): void No description
inflight get(key: str): str? No description
inflight hGet(key: str, field: str): str? No description
inflight hSet(key: str, field: str, value: str): void No description
inflight sAdd(key: str, value: str): void No description
inflight sMembers(key: str): Array? No description
inflight set(key: str, value: str): void No description
inflight url(): str No description