interface RedisNodeParameters {
channel?: string;
expire?: boolean;
getValues?: boolean;
key?: string;
keyPattern?: string;
keyType?:
| "string"
| "list"
| "automatic"
| "hash"
| "sets";
list?: string;
messageData?: string;
operation?: | "get"
| "delete"
| "publish"
| "push"
| "set"
| "incr"
| "info"
| "keys"
| "pop";
options?: { dotNotation?: boolean };
propertyName?: string;
tail?: boolean;
ttl?: number;
value?: string;
valueIsJSON?: boolean;
}
Properties§
Source§readonly key Type?: "string" | "list" | "automatic" | "hash" | "sets"
readonly key Type?: "string" | "list" | "automatic" | "hash" | "sets"
The type of the key to get Default: "automatic"
Source§readonly operation?:
| "get"
| "delete"
| "publish"
| "push"
| "set"
| "incr"
| "info"
| "keys"
| "pop"
readonly operation?:
| "get"
| "delete"
| "publish"
| "push"
| "set"
| "incr"
| "info"
| "keys"
| "pop"
Default: "info"
Source§readonly property Name?: string
readonly property Name?: string
Name of the property to write received data to. Supports dot-notation. Example: "data.person[0].name". Default: "propertyName"
Channel name