Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/redis/RedisOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export interface CommonRedisOptions extends CommanderOptions {
*
* By default, if the connection to Redis server has not been established, commands are added to a queue
* and are executed once the connection is "ready" (when `enableReadyCheck` is true, "ready" means
* the Redis server has loaded the database from disk, otherwise means the connection to the Redis
* the Redis server has loaded the database from disk; otherwise, means the connection to the Redis
* server has been established). If this option is false, when execute the command when the connection
* isn't ready, an error will be returned.
*
Expand Down
6 changes: 3 additions & 3 deletions lib/utils/RedisCommander.ts

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is auto-generated, these changes will be overwrite.
needs to port the spelling fixes to https://github.com/valkey-io/valkey/tree/57b176169d2c869d14dc4908674ffbb8b28b39cc/src/commands
@jsoref can you fix it?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Original file line number Diff line number Diff line change
Expand Up @@ -8978,7 +8978,7 @@ interface RedisCommander<Context extends ClientContext = { type: "default" }> {
/**
* Synchronously saves the database(s) to disk and shuts down the server.
* - _group_: server
* - _complexity_: O(N) when saving, where N is the total number of keys in all databases when saving data, otherwise O(1)
* - _complexity_: O(N) when saving, where N is the total number of keys in all databases when saving data; otherwise, O(1)
* - _since_: 1.0.0
*/
shutdown(callback?: Callback<"OK">): Result<"OK", Context>;
Expand Down Expand Up @@ -10009,7 +10009,7 @@ interface RedisCommander<Context extends ClientContext = { type: "default" }> {
/**
* Returns one or more random members from a set after removing them. Deletes the set if the last member was popped.
* - _group_: set
* - _complexity_: Without the count argument O(1), otherwise O(N) where N is the value of the passed count.
* - _complexity_: Without the count argument O(1); otherwise, O(N) where N is the value of the passed count.
* - _since_: 1.0.0
*/
spop(
Expand Down Expand Up @@ -10046,7 +10046,7 @@ interface RedisCommander<Context extends ClientContext = { type: "default" }> {
/**
* Get one or multiple random members from a set
* - _group_: set
* - _complexity_: Without the count argument O(1), otherwise O(N) where N is the absolute value of the passed count.
* - _complexity_: Without the count argument O(1); otherwise, O(N) where N is the absolute value of the passed count.
* - _since_: 1.0.0
*/
srandmember(
Expand Down