methodRedisClient.lpushxlpushx(key: KeyLike,value: KeyLike): Promise<number>;Prepend a value to a list, only if the list exists@param keyThe list key@param valueThe value to prepend@returnsPromise that resolves with the length of the list after the push operation, or 0 if the list doesn't existReferenced typestype KeyLike = string | ArrayBufferView | Blob
Promise that resolves with the length of the list after the push operation, or 0 if the list doesn't exist