Mrpush
Bun

method

RedisClient.rpush

key: KeyLike,
value: KeyLike
): Promise<number>;

Append one or multiple values to a list

@param key

The list key

@param value

The value to append

@returns

Promise that resolves with the length of the list after the push operation

Referenced types

type KeyLike = string | ArrayBufferView | Blob