diff --git a/java/client/src/main/java/glide/api/commands/BitmapBaseCommands.java b/java/client/src/main/java/glide/api/commands/BitmapBaseCommands.java index 4d77db6180..4161657713 100644 --- a/java/client/src/main/java/glide/api/commands/BitmapBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/BitmapBaseCommands.java @@ -20,7 +20,7 @@ * Supports commands and transactions for the "Bitmap Commands" group for standalone and cluster * clients. * - * @see Bitmap Commands + * @see Bitmap Commands */ public interface BitmapBaseCommands { /** diff --git a/java/client/src/main/java/glide/api/commands/ConnectionManagementClusterCommands.java b/java/client/src/main/java/glide/api/commands/ConnectionManagementClusterCommands.java index d152a8d580..632f9135f5 100644 --- a/java/client/src/main/java/glide/api/commands/ConnectionManagementClusterCommands.java +++ b/java/client/src/main/java/glide/api/commands/ConnectionManagementClusterCommands.java @@ -17,7 +17,7 @@ public interface ConnectionManagementClusterCommands { * Pings the Redis server.
* The command will be routed to all primary nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @return String with "PONG". * @example *
{@code
@@ -31,7 +31,7 @@ public interface ConnectionManagementClusterCommands {
      * Pings the Redis server.
* The command will be routed to all primary nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The server will respond with a copy of the message. * @return String with a copy of the argument message. * @example @@ -46,7 +46,7 @@ public interface ConnectionManagementClusterCommands { * Pings the Redis server.
* The command will be routed to all primary nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The server will respond with a copy of the message. * @return GlideString with a copy of the argument message. * @example @@ -60,7 +60,7 @@ public interface ConnectionManagementClusterCommands { /** * Pings the Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return String with "PONG". @@ -75,7 +75,7 @@ public interface ConnectionManagementClusterCommands { /** * Pings the Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The ping argument that will be returned. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. @@ -91,7 +91,7 @@ public interface ConnectionManagementClusterCommands { /** * Pings the Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The ping argument that will be returned. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. @@ -108,7 +108,7 @@ public interface ConnectionManagementClusterCommands { * Gets the current connection id.
* The command will be routed to a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @return The id of the client. * @example *
{@code
@@ -121,7 +121,7 @@ public interface ConnectionManagementClusterCommands {
     /**
      * Gets the current connection id.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
      * @return A {@link ClusterValue} which holds a single value if single node route is used or a
@@ -142,7 +142,7 @@ public interface ConnectionManagementClusterCommands {
      * Gets the name of the current connection.
* The command will be routed a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @return The name of the client connection as a string if a name is set, or null if * no name is assigned. * @example @@ -156,7 +156,7 @@ public interface ConnectionManagementClusterCommands { /** * Gets the name of the current connection. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return A {@link ClusterValue} which holds a single value if single node route is used or a @@ -178,7 +178,7 @@ public interface ConnectionManagementClusterCommands { * Echoes the provided message back.
* The command will be routed a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The message to be echoed back. * @return The provided message. * @example @@ -193,7 +193,7 @@ public interface ConnectionManagementClusterCommands { * Echoes the provided message back.
* The command will be routed a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The message to be echoed back. * @return The provided message. * @example @@ -207,7 +207,7 @@ public interface ConnectionManagementClusterCommands { /** * Echoes the provided message back. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The message to be echoed back. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. @@ -230,7 +230,7 @@ public interface ConnectionManagementClusterCommands { /** * Echoes the provided message back. * - * @see redis.io for details. + * @see valkey.io for details. * @param message The message to be echoed back. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. diff --git a/java/client/src/main/java/glide/api/commands/ConnectionManagementCommands.java b/java/client/src/main/java/glide/api/commands/ConnectionManagementCommands.java index 635434a0e0..d6dd8e861e 100644 --- a/java/client/src/main/java/glide/api/commands/ConnectionManagementCommands.java +++ b/java/client/src/main/java/glide/api/commands/ConnectionManagementCommands.java @@ -14,7 +14,7 @@ public interface ConnectionManagementCommands { /** * Pings the Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @return String with "PONG". * @example *
{@code
@@ -27,7 +27,7 @@ public interface ConnectionManagementCommands {
     /**
      * Pings the Redis server.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param message The server will respond with a copy of the message.
      * @return String with a copy of the argument message.
      * @example
@@ -41,7 +41,7 @@ public interface ConnectionManagementCommands {
     /**
      * Pings the Redis server.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param message The server will respond with a copy of the message.
      * @return GlideString with a copy of the argument message.
      * @example
@@ -55,7 +55,7 @@ public interface ConnectionManagementCommands {
     /**
      * Gets the current connection id.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @return The id of the client.
      * @example
      *     
{@code
@@ -68,7 +68,7 @@ public interface ConnectionManagementCommands {
     /**
      * Gets the name of the current connection.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @return The name of the client connection as a string if a name is set, or null if
      *     no name is assigned.
      * @example
@@ -82,7 +82,7 @@ public interface ConnectionManagementCommands {
     /**
      * Echoes the provided message back.
      *
-     * @see valkey.io for details.
      * @param message The message to be echoed back.
      * @return The provided message.
      * @example
@@ -96,7 +96,7 @@ public interface ConnectionManagementCommands {
     /**
      * Echoes the provided message back.
      *
-     * @see valkey.io for details.
      * @param message The message to be echoed back.
      * @return The provided message.
      * @example
diff --git a/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java b/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java
index 854d4add0d..ae41481e71 100644
--- a/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java
+++ b/java/client/src/main/java/glide/api/commands/GenericBaseCommands.java
@@ -26,7 +26,7 @@ public interface GenericBaseCommands {
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The keys we wanted to remove.
      * @return The number of keys that were removed.
      * @example
@@ -43,7 +43,7 @@ public interface GenericBaseCommands {
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The keys we wanted to remove.
      * @return The number of keys that were removed.
      * @example
@@ -59,7 +59,7 @@ public interface GenericBaseCommands {
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The keys list to check.
      * @return The number of keys that exist. If the same existing key is mentioned in keys
      *      multiple times, it will be counted multiple times.
@@ -76,7 +76,7 @@ public interface GenericBaseCommands {
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The keys list to check.
      * @return The number of keys that exist. If the same existing key is mentioned in keys
      *      multiple times, it will be counted multiple times.
@@ -90,13 +90,13 @@ public interface GenericBaseCommands {
 
     /**
      * Unlink (delete) multiple keys from the database. A key is ignored if it does not
-     * exist. This command, similar to DEL, removes
+     * exist. This command, similar to DEL, removes
      * specified keys and ignores non-existent ones. However, this command does not block the server,
-     * while DEL does.
+     * while DEL does.
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The list of keys to unlink.
      * @return The number of keys that were unlinked.
      * @example
@@ -109,13 +109,13 @@ public interface GenericBaseCommands {
 
     /**
      * Unlink (delete) multiple keys from the database. A key is ignored if it does not
-     * exist. This command, similar to DEL, removes
+     * exist. This command, similar to DEL, removes
      * specified keys and ignores non-existent ones. However, this command does not block the server,
-     * while DEL does.
+     * while DEL does.
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The list of keys to unlink.
      * @return The number of keys that were unlinked.
      * @example
@@ -136,7 +136,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param seconds The timeout in seconds.
      * @return true if the timeout was set. false if the timeout was not
@@ -159,7 +159,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param seconds The timeout in seconds.
      * @return true if the timeout was set. false if the timeout was not
@@ -182,7 +182,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param seconds The timeout in seconds.
      * @param expireOptions The expire options.
@@ -207,7 +207,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param seconds The timeout in seconds.
      * @param expireOptions The expire options.
@@ -232,7 +232,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixSeconds The timeout in an absolute Unix timestamp.
      * @return true if the timeout was set. false if the timeout was not
@@ -255,7 +255,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixSeconds The timeout in an absolute Unix timestamp.
      * @return true if the timeout was set. false if the timeout was not
@@ -278,7 +278,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixSeconds The timeout in an absolute Unix timestamp.
      * @param expireOptions The expire options.
@@ -303,7 +303,7 @@ public interface GenericBaseCommands {
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixSeconds The timeout in an absolute Unix timestamp.
      * @param expireOptions The expire options.
@@ -329,7 +329,7 @@ CompletableFuture expireAt(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param milliseconds The timeout in milliseconds.
      * @return true if the timeout was set. false if the timeout was not
@@ -352,7 +352,7 @@ CompletableFuture expireAt(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param milliseconds The timeout in milliseconds.
      * @return true if the timeout was set. false if the timeout was not
@@ -375,7 +375,7 @@ CompletableFuture expireAt(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param milliseconds The timeout in milliseconds.
      * @param expireOptions The expire options.
@@ -400,7 +400,7 @@ CompletableFuture expireAt(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param milliseconds The timeout in milliseconds.
      * @param expireOptions The expire options.
@@ -426,7 +426,7 @@ CompletableFuture pexpire(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixMilliseconds The timeout in an absolute Unix timestamp.
      * @return true if the timeout was set. false if the timeout was not
@@ -449,7 +449,7 @@ CompletableFuture pexpire(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixMilliseconds The timeout in an absolute Unix timestamp.
      * @return true if the timeout was set. false if the timeout was not
@@ -472,7 +472,7 @@ CompletableFuture pexpire(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixMilliseconds The timeout in an absolute Unix timestamp.
      * @param expireOptions The expire option.
@@ -498,7 +498,7 @@ CompletableFuture pexpireAt(
      * The timeout will only be cleared by commands that delete or overwrite the contents of key
      * .
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to set timeout on it.
      * @param unixMilliseconds The timeout in an absolute Unix timestamp.
      * @param expireOptions The expire option.
@@ -517,7 +517,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the remaining time to live of key that has a timeout, in seconds.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to return its timeout.
      * @return TTL in seconds, -2 if key does not exist, or -1
      *     if key exists but has no associated expiration.
@@ -535,7 +535,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the remaining time to live of key that has a timeout, in seconds.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to return its timeout.
      * @return TTL in seconds, -2 if key does not exist, or -1
      *     if key exists but has no associated expiration.
@@ -556,7 +556,7 @@ CompletableFuture pexpireAt(
      * To get the expiration with millisecond precision, use {@link #pexpiretime(String)}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to determine the expiration value of.
      * @return The expiration Unix timestamp in seconds. -2 if key does not
      *     exist, or -1 if key exists but has no associated expiration.
@@ -574,7 +574,7 @@ CompletableFuture pexpireAt(
      * To get the expiration with millisecond precision, use {@link #pexpiretime(String)}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to determine the expiration value of.
      * @return The expiration Unix timestamp in seconds. -2 if key does not
      *     exist, or -1 if key exists but has no associated expiration.
@@ -591,7 +591,7 @@ CompletableFuture pexpireAt(
      * will expire, in milliseconds.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to determine the expiration value of.
      * @return The expiration Unix timestamp in milliseconds. -2 if key does
      *     not exist, or -1 if key exists but has no associated expiration.
@@ -608,7 +608,7 @@ CompletableFuture pexpireAt(
      * will expire, in milliseconds.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to determine the expiration value of.
      * @return The expiration Unix timestamp in milliseconds. -2 if key does
      *     not exist, or -1 if key exists but has no associated expiration.
@@ -630,8 +630,8 @@ CompletableFuture pexpireAt(
      * SCRIPT LOAD command. After that, it will be invoked using the Redis EVALSHA
      *  command.
      *
-     * @see SCRIPT LOAD and EVALSHA for details.
+     * @see SCRIPT LOAD and EVALSHA for details.
      * @param script The Lua script to execute.
      * @return a value that depends on the script that was executed.
      * @example
@@ -652,8 +652,8 @@ CompletableFuture pexpireAt(
      * automatically using the Redis SCRIPT LOAD command. After that, it will be invoked
      * using the Redis EVALSHA command.
      *
-     * @see SCRIPT LOAD and EVALSHA for details.
+     * @see SCRIPT LOAD and EVALSHA for details.
      * @param script The Lua script to execute.
      * @param options The script option that contains keys and arguments for the script.
      * @return a value that depends on the script that was executed.
@@ -677,8 +677,8 @@ CompletableFuture pexpireAt(
      * automatically using the Redis SCRIPT LOAD command. After that, it will be invoked
      * using the Redis EVALSHA command.
      *
-     * @see SCRIPT LOAD and EVALSHA for details.
+     * @see SCRIPT LOAD and EVALSHA for details.
      * @param script The Lua script to execute.
      * @param options The script option that contains keys and arguments for the script.
      * @return a value that depends on the script that was executed.
@@ -697,7 +697,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the remaining time to live of key that has a timeout, in milliseconds.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to return its timeout.
      * @return TTL in milliseconds. -2 if key does not exist, -1
      *      if key exists but has no associated expire.
@@ -715,7 +715,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the remaining time to live of key that has a timeout, in milliseconds.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to return its timeout.
      * @return TTL in milliseconds. -2 if key does not exist, -1
      *      if key exists but has no associated expire.
@@ -735,7 +735,7 @@ CompletableFuture pexpireAt(
      * key with an expire set) to persistent (a key that will never expire
      * as no timeout is associated).
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to remove the existing timeout on.
      * @return false if key does not exist or does not have an associated
      *     timeout, true if the timeout has been removed.
@@ -752,7 +752,7 @@ CompletableFuture pexpireAt(
      * key with an expire set) to persistent (a key that will never expire
      * as no timeout is associated).
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to remove the existing timeout on.
      * @return false if key does not exist or does not have an associated
      *     timeout, true if the timeout has been removed.
@@ -767,7 +767,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the string representation of the type of the value stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to check its data type.
      * @return If the key exists, the type of the stored value is returned. Otherwise, a
      *     "none" string is returned.
@@ -785,7 +785,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the string representation of the type of the value stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to check its data type.
      * @return If the key exists, the type of the stored value is returned. Otherwise, a
      *     "none" string is returned.
@@ -803,7 +803,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the internal encoding for the Redis object stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the internal encoding of.
      * @return If key exists, returns the internal encoding of the object stored at
      *     key as a String. Otherwise, returns null.
@@ -821,7 +821,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the internal encoding for the Redis object stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the internal encoding of.
      * @return If key exists, returns the internal encoding of the object stored at
      *     key as a String. Otherwise, returns null.
@@ -839,7 +839,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the logarithmic access frequency counter of a Redis object stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the logarithmic access frequency counter
      *     of.
      * @return If key exists, returns the logarithmic access frequency counter of the
@@ -859,7 +859,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the logarithmic access frequency counter of a Redis object stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the logarithmic access frequency counter
      *     of.
      * @return If key exists, returns the logarithmic access frequency counter of the
@@ -879,7 +879,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the time in seconds since the last access to the value stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the idle time of.
      * @return If key exists, returns the idle time in seconds. Otherwise, returns 
      *     null.
@@ -897,7 +897,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the time in seconds since the last access to the value stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the idle time of.
      * @return If key exists, returns the idle time in seconds. Otherwise, returns 
      *     null.
@@ -915,7 +915,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the reference count of the object stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the reference count of.
      * @return If key exists, returns the reference count of the object stored at 
      *     key as a Long. Otherwise, returns null.
@@ -933,7 +933,7 @@ CompletableFuture pexpireAt(
     /**
      * Returns the reference count of the object stored at key.
      *
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key of the object to get the reference count of.
      * @return If key exists, returns the reference count of the object stored at 
      *     key as a Long. Otherwise, returns null.
@@ -954,7 +954,7 @@ CompletableFuture pexpireAt(
      *
      * @apiNote When in cluster mode, both key and newKey must map to the
      *     same hash slot.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to rename.
      * @param newKey The new name of the key.
      * @return If the key was successfully renamed, return "OK". If 
@@ -974,7 +974,7 @@ CompletableFuture pexpireAt(
      *
      * @apiNote When in cluster mode, both key and newKey must map to the
      *     same hash slot.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to rename.
      * @param newKey The new name of the key.
      * @return If the key was successfully renamed, return "OK". If 
@@ -993,7 +993,7 @@ CompletableFuture pexpireAt(
      *
      * @apiNote When in cluster mode, both key and newKey must map to the
      *     same hash slot.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to rename.
      * @param newKey The new key name.
      * @return true if key was renamed to newKey, false
@@ -1011,7 +1011,7 @@ CompletableFuture pexpireAt(
      *
      * @apiNote When in cluster mode, both key and newKey must map to the
      *     same hash slot.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param key The key to rename.
      * @param newKey The new key name.
      * @return true if key was renamed to newKey, false
@@ -1029,7 +1029,7 @@ CompletableFuture pexpireAt(
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The keys to update last access time.
      * @return The number of keys that were updated.
      * @example
@@ -1045,7 +1045,7 @@ CompletableFuture pexpireAt(
      *
      * @apiNote When in cluster mode, the command may route to multiple nodes when keys
      *     map to different hash slots.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param keys The keys to update last access time.
      * @return The number of keys that were updated.
      * @example
@@ -1063,7 +1063,7 @@ CompletableFuture pexpireAt(
      * @apiNote When in cluster mode, both source and destination must map
      *     to the same hash slot.
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @return true if source was copied, false if source
@@ -1085,7 +1085,7 @@ CompletableFuture pexpireAt(
      * @apiNote When in cluster mode, both source and destination must map
      *     to the same hash slot.
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @return true if source was copied, false if source
@@ -1108,7 +1108,7 @@ CompletableFuture pexpireAt(
      * @apiNote When in cluster mode, both source and destination must map
      *     to the same hash slot.
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @param replace If the destination key should be removed before copying the value to it.
@@ -1132,7 +1132,7 @@ CompletableFuture pexpireAt(
      * @apiNote When in cluster mode, both source and destination must map
      *     to the same hash slot.
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @param replace If the destination key should be removed before copying the value to it.
diff --git a/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java b/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java
index 5815df16e5..9e9765e6c3 100644
--- a/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java
+++ b/java/client/src/main/java/glide/api/commands/GenericClusterCommands.java
@@ -70,7 +70,7 @@ public interface GenericClusterCommands {
      * 

The transaction will be routed to the slot owner of the first key found in the transaction. * If no key is found, the command will be sent to a random node. * - * @see redis.io for details on Redis + * @see valkey.io for details on Redis * Transactions. * @param transaction A {@link Transaction} object containing a list of commands to be executed. * @return A list of results corresponding to the execution of each command in the transaction. @@ -94,7 +94,7 @@ public interface GenericClusterCommands { /** * Executes a transaction by processing the queued commands. * - * @see redis.io for details on Redis + * @see valkey.io for details on Redis * Transactions. * @param transaction A {@link Transaction} object containing a list of commands to be executed. * @param route A single-node routing configuration for the transaction. The client will route the @@ -121,7 +121,7 @@ public interface GenericClusterCommands { /** * Returns a random key. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route, and will return the first successful * result. @@ -141,7 +141,7 @@ public interface GenericClusterCommands { * Returns a random key.
* The command will be routed to all primary nodes, and will return the first successful result. * - * @see redis.io for details. + * @see valkey.io for details. * @return A random key from the database. * @example *

{@code
diff --git a/java/client/src/main/java/glide/api/commands/GenericCommands.java b/java/client/src/main/java/glide/api/commands/GenericCommands.java
index ad6be79ac6..d747e073a5 100644
--- a/java/client/src/main/java/glide/api/commands/GenericCommands.java
+++ b/java/client/src/main/java/glide/api/commands/GenericCommands.java
@@ -41,7 +41,7 @@ public interface GenericCommands {
     /**
      * Executes a transaction by processing the queued commands.
      *
-     * @see redis.io for details on Redis
+     * @see valkey.io for details on Redis
      *     Transactions.
      * @param transaction A {@link Transaction} object containing a list of commands to be executed.
      * @return A list of results corresponding to the execution of each command in the transaction.
@@ -66,7 +66,7 @@ public interface GenericCommands {
      * Move key from the currently selected database to the database specified by 
      * dbIndex.
      *
-     * @see redis.io for more details.
+     * @see valkey.io for more details.
      * @param key The key to move.
      * @param dbIndex The index of the database to move key to.
      * @return true if key was moved, or false if the key
@@ -84,7 +84,7 @@ public interface GenericCommands {
      * Move key from the currently selected database to the database specified by 
      * dbIndex.
      *
-     * @see redis.io for more details.
+     * @see valkey.io for more details.
      * @param key The key to move.
      * @param dbIndex The index of the database to move key to.
      * @return true if key was moved, or false if the key
@@ -104,7 +104,7 @@ public interface GenericCommands {
      *  key first if it already exists, otherwise performs no action.
      *
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @param destinationDB The alternative logical database index for the destination key.
@@ -126,7 +126,7 @@ CompletableFuture copy(
      *  key first if it already exists, otherwise performs no action.
      *
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @param destinationDB The alternative logical database index for the destination key.
@@ -148,7 +148,7 @@ CompletableFuture copy(
      *  key first if it already exists, otherwise performs no action.
      *
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @param destinationDB The alternative logical database index for the destination key.
@@ -168,7 +168,7 @@ CompletableFuture copy(
      *  key first if it already exists, otherwise performs no action.
      *
      * @since Redis 6.2.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param source The key to the source value.
      * @param destination The key where the value should be copied to.
      * @param destinationDB The alternative logical database index for the destination key.
diff --git a/java/client/src/main/java/glide/api/commands/GeospatialIndicesBaseCommands.java b/java/client/src/main/java/glide/api/commands/GeospatialIndicesBaseCommands.java
index 2847da2da3..67cf7248d0 100644
--- a/java/client/src/main/java/glide/api/commands/GeospatialIndicesBaseCommands.java
+++ b/java/client/src/main/java/glide/api/commands/GeospatialIndicesBaseCommands.java
@@ -29,7 +29,7 @@ public interface GeospatialIndicesBaseCommands {
      * .
* If a member is already a part of the sorted set, its position is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersToGeospatialData A mapping of member names to their corresponding positions - see * {@link GeospatialData}. The command will report an error when the user attempts to index @@ -52,7 +52,7 @@ CompletableFuture geoadd( * .
* If a member is already a part of the sorted set, its position is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersToGeospatialData A mapping of member names to their corresponding positions - see * {@link GeospatialData}. The command will report an error when the user attempts to index @@ -79,7 +79,7 @@ CompletableFuture geoadd( * To perform a geoadd operation while specifying optional parameters, use {@link * #geoadd(String, Map, GeoAddOptions)}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersToGeospatialData A mapping of member names to their corresponding positions - see * {@link GeospatialData}. The command will report an error when the user attempts to index @@ -100,7 +100,7 @@ CompletableFuture geoadd( * To perform a geoadd operation while specifying optional parameters, use {@link * #geoadd(String, Map, GeoAddOptions)}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersToGeospatialData A mapping of member names to their corresponding positions - see * {@link GeospatialData}. The command will report an error when the user attempts to index diff --git a/java/client/src/main/java/glide/api/commands/HashBaseCommands.java b/java/client/src/main/java/glide/api/commands/HashBaseCommands.java index 02cf48d996..d20365c249 100644 --- a/java/client/src/main/java/glide/api/commands/HashBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/HashBaseCommands.java @@ -20,7 +20,7 @@ public interface HashBaseCommands { /** * Retrieves the value associated with field in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to retrieve from the database. * @return The value associated with field, or null when field @@ -39,7 +39,7 @@ public interface HashBaseCommands { /** * Retrieves the value associated with field in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to retrieve from the database. * @return The value associated with field, or null when field @@ -58,7 +58,7 @@ public interface HashBaseCommands { /** * Sets the specified fields to their respective values in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fieldValueMap A field-value map consisting of fields and their corresponding values to * be set in the hash stored at the specified key. @@ -74,7 +74,7 @@ public interface HashBaseCommands { /** * Sets the specified fields to their respective values in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fieldValueMap A field-value map consisting of fields and their corresponding values to * be set in the hash stored at the specified key. @@ -93,7 +93,7 @@ public interface HashBaseCommands { * If key does not exist, a new key holding a hash is created.
* If field already exists, this operation has no effect. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field to set the value for. * @param value The value to set. @@ -116,7 +116,7 @@ public interface HashBaseCommands { * If key does not exist, a new key holding a hash is created.
* If field already exists, this operation has no effect. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field to set the value for. * @param value The value to set. @@ -137,7 +137,7 @@ public interface HashBaseCommands { * Removes the specified fields from the hash stored at key. Specified fields that do * not exist within this hash are ignored. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fields The fields to remove from the hash stored at key. * @return The number of fields that were removed from the hash, not including specified but @@ -155,7 +155,7 @@ public interface HashBaseCommands { * Removes the specified fields from the hash stored at key. Specified fields that do * not exist within this hash are ignored. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fields The fields to remove from the hash stored at key. * @return The number of fields that were removed from the hash, not including specified but @@ -172,7 +172,7 @@ public interface HashBaseCommands { /** * Returns the number of fields contained in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return The number of fields in the hash, or 0 when the key does not exist.
* If key holds a value that is not a hash, an error is returned. @@ -190,7 +190,7 @@ public interface HashBaseCommands { /** * Returns the number of fields contained in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return The number of fields in the hash, or 0 when the key does not exist.
* If key holds a value that is not a hash, an error is returned. @@ -208,7 +208,7 @@ public interface HashBaseCommands { /** * Returns all values in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return An array of values in the hash, or an empty array when the * key does not exist. @@ -223,7 +223,7 @@ public interface HashBaseCommands { /** * Returns all values in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return An array of values in the hash, or an empty array when the * key does not exist. @@ -238,7 +238,7 @@ public interface HashBaseCommands { /** * Returns the values associated with the specified fields in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fields The fields in the hash stored at key to retrieve from the database. * @return An array of values associated with the given fields, in the same order as they are @@ -257,7 +257,7 @@ public interface HashBaseCommands { /** * Returns the values associated with the specified fields in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fields The fields in the hash stored at key to retrieve from the database. * @return An array of values associated with the given fields, in the same order as they are @@ -276,7 +276,7 @@ public interface HashBaseCommands { /** * Returns if field is an existing field in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field to check in the hash stored at key. * @return True if the hash contains the specified field. If the hash does not @@ -295,7 +295,7 @@ public interface HashBaseCommands { /** * Returns if field is an existing field in the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field to check in the hash stored at key. * @return True if the hash contains the specified field. If the hash does not @@ -314,7 +314,7 @@ public interface HashBaseCommands { /** * Returns all fields and values of the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return A Map of fields and their values stored in the hash. Every field name in * the map is associated with its corresponding value.
@@ -330,7 +330,7 @@ public interface HashBaseCommands { /** * Returns all fields and values of the hash stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return A Map of fields and their values stored in the hash. Every field name in * the map is associated with its corresponding value.
@@ -349,7 +349,7 @@ public interface HashBaseCommands { * hash stored at key is decremented. If field or key does * not exist, it is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to increment or decrement its * value. @@ -371,7 +371,7 @@ public interface HashBaseCommands { * hash stored at key is decremented. If field or key does * not exist, it is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to increment or decrement its * value. @@ -394,7 +394,7 @@ public interface HashBaseCommands { * field
or key does not exist, it is set to 0 before performing the * operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to increment or decrement its * value. @@ -417,7 +417,7 @@ public interface HashBaseCommands { * field
or key does not exist, it is set to 0 before performing the * operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to increment or decrement its * value. @@ -501,7 +501,7 @@ public interface HashBaseCommands { * Returns a random field name from the hash value stored at key. * * @since Redis 6.2 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return A random field name from the hash stored at key, or null when * the key does not exist. @@ -517,7 +517,7 @@ public interface HashBaseCommands { * Returns a random field name from the hash value stored at key. * * @since Redis 6.2 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return A random field name from the hash stored at key, or null when * the key does not exist. @@ -534,7 +534,7 @@ public interface HashBaseCommands { * . * * @since Redis 6.2 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param count The number of field names to return.
* If count is positive, returns unique elements.
@@ -554,7 +554,7 @@ public interface HashBaseCommands { * . * * @since Redis 6.2 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param count The number of field names to return.
* If count is positive, returns unique elements.
@@ -574,7 +574,7 @@ public interface HashBaseCommands { * value stored at key. * * @since Redis 6.2 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param count The number of field names to return.
* If count is positive, returns unique elements.
@@ -596,7 +596,7 @@ public interface HashBaseCommands { * value stored at key. * * @since Redis 6.2 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param count The number of field names to return.
* If count is positive, returns unique elements.
diff --git a/java/client/src/main/java/glide/api/commands/HyperLogLogBaseCommands.java b/java/client/src/main/java/glide/api/commands/HyperLogLogBaseCommands.java index 7c59001a9a..82c36ba0a0 100644 --- a/java/client/src/main/java/glide/api/commands/HyperLogLogBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/HyperLogLogBaseCommands.java @@ -21,7 +21,7 @@ public interface HyperLogLogBaseCommands { * HyperLogLog, then no operation is performed. If key does not exist, then the * HyperLogLog structure is created. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the HyperLogLog data structure to add elements into. * @param elements An array of members to add to the HyperLogLog stored at key. * @return If the HyperLogLog is newly created, or if the HyperLogLog approximated cardinality is @@ -46,7 +46,7 @@ public interface HyperLogLogBaseCommands { * HyperLogLog, then no operation is performed. If key does not exist, then the * HyperLogLog structure is created. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the HyperLogLog data structure to add elements into. * @param elements An array of members to add to the HyperLogLog stored at key. * @return If the HyperLogLog is newly created, or if the HyperLogLog approximated cardinality is @@ -67,7 +67,7 @@ public interface HyperLogLogBaseCommands { * calculates the combined cardinality of multiple keys by merging their HyperLogLogs temporarily. * * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the HyperLogLog data structures to be analyzed. * @return The approximated cardinality of given HyperLogLog data structures.
* The cardinality of a key that does not exist is 0. @@ -84,7 +84,7 @@ public interface HyperLogLogBaseCommands { * calculates the combined cardinality of multiple keys by merging their HyperLogLogs temporarily. * * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the HyperLogLog data structures to be analyzed. * @return The approximated cardinality of given HyperLogLog data structures.
* The cardinality of a key that does not exist is 0. @@ -103,7 +103,7 @@ public interface HyperLogLogBaseCommands { * * @apiNote When in cluster mode, destination and all keys in sourceKeys * must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination HyperLogLog where the merged data sets will be * stored. * @param sourceKeys The keys of the HyperLogLog structures to be merged. @@ -126,7 +126,7 @@ public interface HyperLogLogBaseCommands { * * @apiNote When in cluster mode, destination and all keys in sourceKeys * must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination HyperLogLog where the merged data sets will be * stored. * @param sourceKeys The keys of the HyperLogLog structures to be merged. diff --git a/java/client/src/main/java/glide/api/commands/ListBaseCommands.java b/java/client/src/main/java/glide/api/commands/ListBaseCommands.java index 7a040c78e8..fc02355119 100644 --- a/java/client/src/main/java/glide/api/commands/ListBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/ListBaseCommands.java @@ -25,7 +25,7 @@ public interface ListBaseCommands { * element to the rightmost element. If key does not exist, it is created as an empty * list before performing the push operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the head of the list stored at key. * @return The length of the list after the push operation. @@ -46,7 +46,7 @@ public interface ListBaseCommands { * element to the rightmost element. If key does not exist, it is created as an empty * list before performing the push operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the head of the list stored at key. * @return The length of the list after the push operation. @@ -65,7 +65,7 @@ public interface ListBaseCommands { * Removes and returns the first elements of the list stored at key. The command pops * a single element from the beginning of the list. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return The value of the first element.
* If key does not exist, null will be returned. @@ -85,7 +85,7 @@ public interface ListBaseCommands { * key. If no match is found, null is returned. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @return The index of the first occurrence of element, or null if @@ -104,7 +104,7 @@ public interface ListBaseCommands { * key. If no match is found, null is returned. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @return The index of the first occurrence of element, or null if @@ -123,7 +123,7 @@ public interface ListBaseCommands { * options. If no match is found, null is returned. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param options The LPos options. @@ -152,7 +152,7 @@ CompletableFuture lpos( * options. If no match is found, null is returned. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param options The LPos options. @@ -180,7 +180,7 @@ CompletableFuture lpos( * Returns an array of indices of matching elements within a list. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param count The number of matches wanted. @@ -198,7 +198,7 @@ CompletableFuture lpos( * Returns an array of indices of matching elements within a list. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param count The number of matches wanted. @@ -218,7 +218,7 @@ CompletableFuture lposCount( * options. If no match is found, an empty arrayis returned. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param count The number of matches wanted. @@ -247,7 +247,7 @@ CompletableFuture lposCount( * options. If no match is found, an empty arrayis returned. * * @since Redis 6.0.6. - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param count The number of matches wanted. @@ -278,7 +278,7 @@ CompletableFuture lposCount( * Removes and returns up to count elements of the list stored at key, * depending on the list's length. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param count The count of the elements to pop from the list. * @return An array of the popped elements will be returned depending on the list's length.
@@ -302,7 +302,7 @@ CompletableFuture lposCount( * -1 being the last element of the list, -2 being the penultimate, and * so on. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param start The starting point of the range. * @param end The end of the range. @@ -334,7 +334,7 @@ CompletableFuture lposCount( * -1 being the last element of the list, -2 being the penultimate, and * so on. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param start The starting point of the range. * @param end The end of the range. @@ -365,7 +365,7 @@ CompletableFuture lposCount( * the list. Here, -1 means the last element, -2 means the penultimate * and so forth. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param index The index of the element in the list to retrieve. * @return The element at index in the list stored at key.
@@ -389,7 +389,7 @@ CompletableFuture lposCount( * the list. Here, -1 means the last element, -2 means the penultimate * and so forth. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param index The index of the element in the list to retrieve. * @return The element at index in the list stored at key.
@@ -414,7 +414,7 @@ CompletableFuture lposCount( * These offsets can also be negative numbers indicating offsets starting at the end of the list, * with -1 being the last element of the list, -2 being the penultimate, and so on. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param start The starting point of the range. * @param end The end of the range. @@ -440,7 +440,7 @@ CompletableFuture lposCount( * These offsets can also be negative numbers indicating offsets starting at the end of the list, * with -1 being the last element of the list, -2 being the penultimate, and so on. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param start The starting point of the range. * @param end The end of the range. @@ -461,7 +461,7 @@ CompletableFuture lposCount( /** * Returns the length of the list stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return The length of the list at key.
* If key does not exist, it is interpreted as an empty list and 0 @@ -477,7 +477,7 @@ CompletableFuture lposCount( /** * Returns the length of the list stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return The length of the list at key.
* If key does not exist, it is interpreted as an empty list and 0 @@ -500,7 +500,7 @@ CompletableFuture lposCount( * If count is 0 or count is greater than the occurrences of elements * equal to element, it removes all elements equal to element. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param count The count of the occurrences of elements equal to element to remove. * @param element The element to remove from the list. @@ -524,7 +524,7 @@ CompletableFuture lposCount( * If count is 0 or count is greater than the occurrences of elements * equal to element, it removes all elements equal to element. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param count The count of the occurrences of elements equal to element to remove. * @param element The element to remove from the list. @@ -544,7 +544,7 @@ CompletableFuture lposCount( * leftmost element to the rightmost element. If key does not exist, it is created as * an empty list before performing the push operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the tail of the list stored at key. * @return The length of the list after the push operation. @@ -565,7 +565,7 @@ CompletableFuture lposCount( * leftmost element to the rightmost element. If key does not exist, it is created as * an empty list before performing the push operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the tail of the list stored at key. * @return The length of the list after the push operation. @@ -584,7 +584,7 @@ CompletableFuture lposCount( * Removes and returns the last elements of the list stored at key.
* The command pops a single element from the end of the list. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return The value of the last element.
* If key does not exist, null will be returned. @@ -603,7 +603,7 @@ CompletableFuture lposCount( * Removes and returns up to count elements from the list stored at key, * depending on the list's length. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param count The count of the elements to pop from the list. * @return An array of popped elements will be returned depending on the list's length.
@@ -623,7 +623,7 @@ CompletableFuture lposCount( * Inserts element in the list at key either before or after the * pivot. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param position The relative position to insert into - either {@link InsertPosition#BEFORE} or * {@link InsertPosition#AFTER} the pivot. @@ -645,7 +645,7 @@ CompletableFuture linsert( * Inserts element in the list at key either before or after the * pivot. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param position The relative position to insert into - either {@link InsertPosition#BEFORE} or * {@link InsertPosition#AFTER} the pivot. @@ -676,7 +676,7 @@ CompletableFuture linsert( * Commands for more details and best practices. * * - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the lists to pop from. * @param timeout The number of seconds to wait for a blocking operation to complete. A value of * 0 will block indefinitely. @@ -706,7 +706,7 @@ CompletableFuture linsert( * Commands for more details and best practices. * * - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the lists to pop from. * @param timeout The number of seconds to wait for a blocking operation to complete. A value of * 0 will block indefinitely. @@ -728,7 +728,7 @@ CompletableFuture linsert( * key exists and holds a list. If key is not a list, this performs no * operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the tail of the list stored at key. * @return The length of the list after the push operation. @@ -745,7 +745,7 @@ CompletableFuture linsert( * key exists and holds a list. If key is not a list, this performs no * operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the tail of the list stored at key. * @return The length of the list after the push operation. @@ -762,7 +762,7 @@ CompletableFuture linsert( * key exists and holds a list. If key is not a list, this performs no * operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the head of the list stored at key. * @return The length of the list after the push operation. @@ -779,7 +779,7 @@ CompletableFuture linsert( * key exists and holds a list. If key is not a list, this performs no * operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the head of the list stored at key. * @return The length of the list after the push operation. diff --git a/java/client/src/main/java/glide/api/commands/PubSubBaseCommands.java b/java/client/src/main/java/glide/api/commands/PubSubBaseCommands.java index d84aa66b6e..564f80a144 100644 --- a/java/client/src/main/java/glide/api/commands/PubSubBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/PubSubBaseCommands.java @@ -6,14 +6,14 @@ /** * Supports commands for the "Pub/Sub" group for standalone and cluster clients. * - * @see Pub/Sub Commands + * @see Pub/Sub Commands */ public interface PubSubBaseCommands { /** * Publishes message on pubsub channel. * - * @see redis.io for details. + * @see valkey.io for details. * @param channel The channel to publish the message on. * @param message The message to publish. * @return OK. diff --git a/java/client/src/main/java/glide/api/commands/PubSubClusterCommands.java b/java/client/src/main/java/glide/api/commands/PubSubClusterCommands.java index a9dd7403a1..4039c8ddae 100644 --- a/java/client/src/main/java/glide/api/commands/PubSubClusterCommands.java +++ b/java/client/src/main/java/glide/api/commands/PubSubClusterCommands.java @@ -6,7 +6,7 @@ /** * Supports commands for the "Pub/Sub" group for a cluster client. * - * @see Pub/Sub Commands + * @see Pub/Sub Commands */ public interface PubSubClusterCommands { @@ -14,7 +14,7 @@ public interface PubSubClusterCommands { * Publishes message on pubsub channel in sharded mode. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param channel The channel to publish the message on. * @param message The message to publish. * @return OK. diff --git a/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsBaseCommands.java b/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsBaseCommands.java index bcb1060bc7..253ab05168 100644 --- a/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsBaseCommands.java @@ -9,8 +9,7 @@ * Supports commands and transactions for the "Scripting and Function" group for standalone and * cluster clients. * - * @see Scripting and Function - * Commands + * @see Scripting and Function Commands */ public interface ScriptingAndFunctionsBaseCommands { @@ -26,7 +25,7 @@ public interface ScriptingAndFunctionsBaseCommands { * * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param keys An array of keys accessed by the function. To ensure the correct * execution of functions, both in standalone and clustered deployments, all names of keys @@ -55,7 +54,7 @@ public interface ScriptingAndFunctionsBaseCommands { * * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param keys An array of keys accessed by the function. To ensure the correct * execution of functions, both in standalone and clustered deployments, all names of keys @@ -84,7 +83,7 @@ CompletableFuture fcall( * * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param keys An array of keys accessed by the function. To ensure the correct * execution of functions, both in standalone and clustered deployments, all names of keys @@ -112,7 +111,7 @@ CompletableFuture fcall( * * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param keys An array of keys accessed by the function. To ensure the correct * execution of functions, both in standalone and clustered deployments, all names of keys diff --git a/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsClusterCommands.java b/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsClusterCommands.java index 9235f52432..ffb1fe3c01 100644 --- a/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsClusterCommands.java +++ b/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsClusterCommands.java @@ -13,8 +13,7 @@ /** * Supports commands and transactions for the "Scripting and Function" group for a cluster client. * - * @see Scripting and Function - * Commands + * @see Scripting and Function Commands */ public interface ScriptingAndFunctionsClusterCommands { @@ -23,7 +22,7 @@ public interface ScriptingAndFunctionsClusterCommands { * The command will be routed to all primary nodes. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -42,7 +41,7 @@ public interface ScriptingAndFunctionsClusterCommands { * The command will be routed to all primary nodes. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -60,7 +59,7 @@ public interface ScriptingAndFunctionsClusterCommands { * Loads a library to Redis. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -81,7 +80,7 @@ public interface ScriptingAndFunctionsClusterCommands { * Loads a library to Redis. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -104,7 +103,7 @@ CompletableFuture functionLoad( * The command will be routed to a random node. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param withCode Specifies whether to request the library code from the server or not. * @return Info about all libraries and their functions. * @example @@ -130,7 +129,7 @@ CompletableFuture functionLoad( * The command will be routed to a random node. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libNamePattern A wildcard pattern for matching library names. * @param withCode Specifies whether to request the library code from the server or not. * @return Info about queried libraries and their functions. @@ -156,7 +155,7 @@ CompletableFuture functionLoad( * Returns information about the functions and libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param withCode Specifies whether to request the library code from the server or not. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. @@ -186,7 +185,7 @@ CompletableFuture[]>> functionList( * Returns information about the functions and libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libNamePattern A wildcard pattern for matching library names. * @param withCode Specifies whether to request the library code from the server or not. * @param route Specifies the routing configuration for the command. The client will route the @@ -218,7 +217,7 @@ CompletableFuture[]>> functionList( * The command will be routed to all primary nodes. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @return OK. * @example *
{@code
@@ -233,7 +232,7 @@ CompletableFuture[]>> functionList(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param mode The flushing mode, could be either {@link FlushMode#SYNC} or {@link
      *     FlushMode#ASYNC}.
      * @return OK.
@@ -249,7 +248,7 @@ CompletableFuture[]>> functionList(
      * Deletes all function libraries.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
      * @return OK.
@@ -265,7 +264,7 @@ CompletableFuture[]>> functionList(
      * Deletes all function libraries.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param mode The flushing mode, could be either {@link FlushMode#SYNC} or {@link
      *     FlushMode#ASYNC}.
      * @param route Specifies the routing configuration for the command. The client will route the
@@ -284,7 +283,7 @@ CompletableFuture[]>> functionList(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param libName The library name to delete.
      * @return OK.
      * @example
@@ -300,7 +299,7 @@ CompletableFuture[]>> functionList(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param libName The library name to delete.
      * @return OK.
      * @example
@@ -315,7 +314,7 @@ CompletableFuture[]>> functionList(
      * Deletes a library and all its functions.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param libName The library name to delete.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -332,7 +331,7 @@ CompletableFuture[]>> functionList(
      * Deletes a library and all its functions.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param libName The library name to delete.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -350,7 +349,7 @@ CompletableFuture[]>> functionList(
      * The command will be routed to a random node.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @return The serialized payload of all loaded libraries.
      * @example
      *     
{@code
@@ -364,7 +363,7 @@ CompletableFuture[]>> functionList(
      * Returns the serialized payload of all loaded libraries.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
      * @return The serialized payload of all loaded libraries.
@@ -381,8 +380,7 @@ CompletableFuture[]>> functionList(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for
-     *     details.
+     * @see valkey.io for details.
      * @param payload The serialized data from {@link #functionDump()}.
      * @return OK.
      * @example
@@ -398,8 +396,7 @@ CompletableFuture[]>> functionList(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for
-     *     details.
+     * @see valkey.io for details.
      * @param payload The serialized data from {@link #functionDump()}.
      * @param policy A policy for handling existing libraries.
      * @return OK.
@@ -415,8 +412,7 @@ CompletableFuture[]>> functionList(
      * Restores libraries from the serialized payload returned by {@link #functionDump(Route)}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for
-     *     details.
+     * @see valkey.io for details.
      * @param payload The serialized data from {@link #functionDump()}.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -433,8 +429,7 @@ CompletableFuture[]>> functionList(
      * Restores libraries from the serialized payload returned by {@link #functionDump(Route)}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for
-     *     details.
+     * @see valkey.io for details.
      * @param payload The serialized data from {@link #functionDump()}.
      * @param policy A policy for handling existing libraries.
      * @param route Specifies the routing configuration for the command. The client will route the
@@ -455,7 +450,7 @@ CompletableFuture functionRestore(
      * To route to a replica please refer to {@link #fcallReadOnly(String)}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @return The invoked function's return value.
      * @example
@@ -472,7 +467,7 @@ CompletableFuture functionRestore(
      * To route to a replica please refer to {@link #fcallReadOnly(String)}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @return The invoked function's return value.
      * @example
@@ -487,7 +482,7 @@ CompletableFuture functionRestore(
      * Invokes a previously loaded function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -506,7 +501,7 @@ CompletableFuture functionRestore(
      * Invokes a previously loaded function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -527,7 +522,7 @@ CompletableFuture functionRestore(
      * To route to a replica please refer to {@link #fcallReadOnly(String, String[])}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -547,7 +542,7 @@ CompletableFuture functionRestore(
      * To route to a replica please refer to {@link #fcallReadOnly(String, String[])}.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -565,7 +560,7 @@ CompletableFuture functionRestore(
      * Invokes a previously loaded function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -585,7 +580,7 @@ CompletableFuture functionRestore(
      * Invokes a previously loaded function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -607,7 +602,7 @@ CompletableFuture> fcall(
      * The command is routed to a random node depending on the client's {@link ReadFrom} strategy.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @return The invoked function's return value.
      * @example
@@ -623,7 +618,7 @@ CompletableFuture> fcall(
      * The command is routed to a random node depending on the client's {@link ReadFrom} strategy.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @return The invoked function's return value.
      * @example
@@ -638,7 +633,7 @@ CompletableFuture> fcall(
      * Invokes a previously loaded read-only function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -657,7 +652,7 @@ CompletableFuture> fcall(
      * Invokes a previously loaded read-only function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
@@ -677,7 +672,7 @@ CompletableFuture> fcall(
      * The command is routed to a random node depending on the client's {@link ReadFrom} strategy.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -696,7 +691,7 @@ CompletableFuture> fcall(
      * The command is routed to a random node depending on the client's {@link ReadFrom} strategy.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -714,7 +709,7 @@ CompletableFuture> fcall(
      * Invokes a previously loaded read-only function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -735,7 +730,7 @@ CompletableFuture> fcallReadOnly(
      * Invokes a previously loaded read-only function.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param function The function name.
      * @param arguments An array of function arguments. arguments
      *      should not represent names of keys.
@@ -758,7 +753,7 @@ CompletableFuture> fcallReadOnly(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @return OK if function is terminated. Otherwise, throws an error.
      * @example
      *     
{@code
@@ -773,7 +768,7 @@ CompletableFuture> fcallReadOnly(
      * FUNCTION KILL terminates read-only functions only.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @param route Specifies the routing configuration for the command. The client will route the
      *     command to the nodes defined by route.
      * @return OK if function is terminated. Otherwise, throws an error.
@@ -791,7 +786,7 @@ CompletableFuture> fcallReadOnly(
      * The command will be routed to all primary nodes.
      *
      * @since Redis 7.0 and above.
-     * @see redis.io for details.
+     * @see valkey.io for details.
      * @return A Map with two keys:
      *     
    *
  • running_script with information about the running script. @@ -824,7 +819,7 @@ CompletableFuture> fcallReadOnly( * available execution engines. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return A Map with two keys: diff --git a/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsCommands.java b/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsCommands.java index 759460391e..4d31312b13 100644 --- a/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsCommands.java +++ b/java/client/src/main/java/glide/api/commands/ScriptingAndFunctionsCommands.java @@ -12,8 +12,7 @@ * Supports commands and transactions for the "Scripting and Function" group for a standalone * client. * - * @see Scripting and Function - * Commands + * @see Scripting and Function Commands */ public interface ScriptingAndFunctionsCommands { @@ -21,7 +20,7 @@ public interface ScriptingAndFunctionsCommands { * Loads a library to Redis. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -39,7 +38,7 @@ public interface ScriptingAndFunctionsCommands { * Loads a library to Redis. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -57,7 +56,7 @@ public interface ScriptingAndFunctionsCommands { * Returns information about the functions and libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param withCode Specifies whether to request the library code from the server or not. * @return Info about all libraries and their functions. * @example @@ -82,7 +81,7 @@ public interface ScriptingAndFunctionsCommands { * Returns information about the functions and libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param libNamePattern A wildcard pattern for matching library names. * @param withCode Specifies whether to request the library code from the server or not. * @return Info about queried libraries and their functions. @@ -108,7 +107,7 @@ public interface ScriptingAndFunctionsCommands { * Deletes all function libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @return OK. * @example *
    {@code
    @@ -122,7 +121,7 @@ public interface ScriptingAndFunctionsCommands {
          * Deletes all function libraries.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param mode The flushing mode, could be either {@link FlushMode#SYNC} or {@link
          *     FlushMode#ASYNC}.
          * @return OK.
    @@ -138,7 +137,7 @@ public interface ScriptingAndFunctionsCommands {
          * Deletes a library and all its functions.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param libName The library name to delete.
          * @return OK.
          * @example
    @@ -153,7 +152,7 @@ public interface ScriptingAndFunctionsCommands {
          * Deletes a library and all its functions.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param libName The library name to delete.
          * @return OK.
          * @example
    @@ -168,7 +167,7 @@ public interface ScriptingAndFunctionsCommands {
          * Returns the serialized payload of all loaded libraries.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @return The serialized payload of all loaded libraries.
          * @example
          *     
    {@code
    @@ -182,8 +181,7 @@ public interface ScriptingAndFunctionsCommands {
          * Restores libraries from the serialized payload returned by {@link #functionDump()}.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for
    -     *     details.
    +     * @see valkey.io for details.
          * @param payload The serialized data from {@link #functionDump()}.
          * @return OK.
          * @example
    @@ -198,8 +196,7 @@ public interface ScriptingAndFunctionsCommands {
          * Restores libraries from the serialized payload returned by {@link #functionDump()}..
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for
    -     *     details.
    +     * @see valkey.io for details.
          * @param payload The serialized data from {@link #functionDump()}.
          * @param policy A policy for handling existing libraries.
          * @return OK.
    @@ -217,7 +214,7 @@ public interface ScriptingAndFunctionsCommands {
          * To route to a replica please refer to {@link #fcallReadOnly}.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param function The function name.
          * @return The invoked function's return value.
          * @example
    @@ -234,7 +231,7 @@ public interface ScriptingAndFunctionsCommands {
          * To route to a replica please refer to {@link #fcallReadOnly}.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param function The function name.
          * @return The invoked function's return value.
          * @example
    @@ -250,7 +247,7 @@ public interface ScriptingAndFunctionsCommands {
          * This command is routed depending on the client's {@link ReadFrom} strategy.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param function The function name.
          * @return The invoked function's return value.
          * @example
    @@ -266,7 +263,7 @@ public interface ScriptingAndFunctionsCommands {
          * This command is routed depending on the client's {@link ReadFrom} strategy.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @param function The function name.
          * @return The invoked function's return value.
          * @example
    @@ -282,7 +279,7 @@ public interface ScriptingAndFunctionsCommands {
          * FUNCTION KILL terminates read-only functions only.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @return OK if function is terminated. Otherwise, throws an error.
          * @example
          *     
    {@code
    @@ -297,7 +294,7 @@ public interface ScriptingAndFunctionsCommands {
          * available execution engines.
          *
          * @since Redis 7.0 and above.
    -     * @see redis.io for details.
    +     * @see valkey.io for details.
          * @return A Map with two keys:
          *     
      *
    • running_script with information about the running script. diff --git a/java/client/src/main/java/glide/api/commands/ServerManagementClusterCommands.java b/java/client/src/main/java/glide/api/commands/ServerManagementClusterCommands.java index 0f9b4e3dbe..629622f1ba 100644 --- a/java/client/src/main/java/glide/api/commands/ServerManagementClusterCommands.java +++ b/java/client/src/main/java/glide/api/commands/ServerManagementClusterCommands.java @@ -21,7 +21,7 @@ public interface ServerManagementClusterCommands { * Gets information and statistics about the Redis server using the {@link Section#DEFAULT} * option. The command will be routed to all primary nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @return Response from Redis cluster with a Map{@literal } with * each address as the key and its corresponding value is the information for the node. * @example @@ -39,7 +39,7 @@ public interface ServerManagementClusterCommands { * Gets information and statistics about the Redis server. If no argument is provided, so the * {@link Section#DEFAULT} option is assumed. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return Response from Redis cluster with a String with the requested Sections. @@ -61,7 +61,7 @@ public interface ServerManagementClusterCommands { * Gets information and statistics about the Redis server. The command will be routed to all * primary nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @param options A list of {@link InfoOptions.Section} values specifying which sections of * information to retrieve. When no parameter is provided, the {@link * InfoOptions.Section#DEFAULT} option is assumed. @@ -82,7 +82,7 @@ public interface ServerManagementClusterCommands { /** * Gets information and statistics about the Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @param options A list of {@link InfoOptions.Section} values specifying which sections of * information to retrieve. When no parameter is provided, the {@link * InfoOptions.Section#DEFAULT} option is assumed. @@ -105,7 +105,7 @@ public interface ServerManagementClusterCommands { * Rewrites the configuration file with the current configuration.
      * The command will be routed automatically to all nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK when the configuration was rewritten properly, otherwise an error is * thrown. * @example @@ -119,7 +119,7 @@ public interface ServerManagementClusterCommands { /** * Rewrites the configuration file with the current configuration. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return OK when the configuration was rewritten properly, otherwise an error is @@ -135,11 +135,11 @@ public interface ServerManagementClusterCommands { /** * Resets the statistics reported by Redis using the INFO and LATENCY HISTOGRAM commands.
      + * href="https://valkey.io/commands/info/">INFO and LATENCY HISTOGRAM commands.
      * The command will be routed automatically to all nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK to confirm that the statistics were successfully reset. * @example *
      {@code
      @@ -151,10 +151,10 @@ public interface ServerManagementClusterCommands {
       
           /**
            * Resets the statistics reported by Redis using the INFO and LATENCY HISTOGRAM commands.
      +     * href="https://valkey.io/commands/info/">INFO and LATENCY HISTOGRAM commands.
            *
      -     * @see redis.io for details.
      +     * @see valkey.io for details.
            * @param route Specifies the routing configuration for the command. The client will route the
            *     command to the nodes defined by route.
            * @return OK to confirm that the statistics were successfully reset.
      @@ -171,7 +171,7 @@ public interface ServerManagementClusterCommands {
            * Reads the configuration parameters of a running Redis server.
      * The command will be sent to a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters An array of configuration parameter names to retrieve values * for. * @return A map of values corresponding to the configuration parameters. @@ -187,7 +187,7 @@ public interface ServerManagementClusterCommands { /** * Reads the configuration parameters of a running Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters An array of configuration parameter names to retrieve values * for. * @param route Specifies the routing configuration for the command. The client will route the @@ -211,7 +211,7 @@ public interface ServerManagementClusterCommands { * Sets configuration parameters to the specified values.
      * The command will be sent to all nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters A map consisting of configuration parameters and their * respective values to set. * @return OK if all configurations have been successfully set. Otherwise, raises an @@ -227,7 +227,7 @@ public interface ServerManagementClusterCommands { /** * Sets configuration parameters to the specified values. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters A map consisting of configuration parameters and their * respective values to set. * @param route Specifies the routing configuration for the command. The client will route the @@ -246,7 +246,7 @@ public interface ServerManagementClusterCommands { * Returns the server time.
      * The command will be routed to a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @return The current server time as a String array with two elements: A * UNIX TIME and the amount of microseconds already elapsed in the current second. The * returned array is in a [UNIX TIME, Microseconds already elapsed] format. @@ -261,7 +261,7 @@ public interface ServerManagementClusterCommands { /** * Returns the server time. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return The current server time as a String array with two elements: A @@ -289,7 +289,7 @@ public interface ServerManagementClusterCommands { * was made since then.
      * The command will be routed to a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @return UNIX TIME of the last DB save executed with success. * @example *
      {@code
      @@ -303,7 +303,7 @@ public interface ServerManagementClusterCommands {
            * Returns UNIX TIME of the last DB save timestamp or startup timestamp if no save
            * was made since then.
            *
      -     * @see redis.io for details.
      +     * @see valkey.io for details.
            * @param route Specifies the routing configuration for the command. The client will route the
            *     command to the nodes defined by route.
            * @return UNIX TIME of the last DB save executed with success.
      @@ -449,7 +449,7 @@ public interface ServerManagementClusterCommands {
            * Displays a piece of generative computer art and the Redis version.
      * The command will be routed to a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @return A piece of generative computer art along with the current Redis version. * @example *
      {@code
      @@ -464,7 +464,7 @@ public interface ServerManagementClusterCommands {
            * Displays a piece of generative computer art and the Redis version.
      * The command will be routed to a random node. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters Additional set of arguments in order to change the output: *
        *
      • On Redis version 5, those are length of the line, number of squares per @@ -488,7 +488,7 @@ public interface ServerManagementClusterCommands { * The command will be routed to a random node. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @return A piece of generative computer art along with the current Redis version. * @example @@ -505,7 +505,7 @@ public interface ServerManagementClusterCommands { * The command will be routed to a random node. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @param parameters Additional set of arguments in order to change the output: *
          @@ -531,7 +531,7 @@ public interface ServerManagementClusterCommands { /** * Displays a piece of generative computer art and the Redis version. * - * @see redis.io for details. + * @see valkey.io for details. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. * @return A piece of generative computer art along with the current Redis version. @@ -549,7 +549,7 @@ public interface ServerManagementClusterCommands { /** * Displays a piece of generative computer art and the Redis version. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters Additional set of arguments in order to change the output: *
            *
          • On Redis version 5, those are length of the line, number of squares per @@ -576,7 +576,7 @@ public interface ServerManagementClusterCommands { * Displays a piece of generative computer art and the Redis version. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @param route Specifies the routing configuration for the command. The client will route the * command to the nodes defined by route. @@ -596,7 +596,7 @@ public interface ServerManagementClusterCommands { * Displays a piece of generative computer art and the Redis version. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @param parameters Additional set of arguments in order to change the output: *
              diff --git a/java/client/src/main/java/glide/api/commands/ServerManagementCommands.java b/java/client/src/main/java/glide/api/commands/ServerManagementCommands.java index 330908fec3..92cc2b3588 100644 --- a/java/client/src/main/java/glide/api/commands/ServerManagementCommands.java +++ b/java/client/src/main/java/glide/api/commands/ServerManagementCommands.java @@ -21,7 +21,7 @@ public interface ServerManagementCommands { * Gets information and statistics about the Redis server using the {@link Section#DEFAULT} * option. * - * @see redis.io for details. + * @see valkey.io for details. * @return Response from Redis containing a String with the information for the * default sections. * @example @@ -35,7 +35,7 @@ public interface ServerManagementCommands { /** * Get information and statistics about the Redis server. * - * @see redis.io for details. + * @see valkey.io for details. * @param options A list of {@link Section} values specifying which sections of information to * retrieve. When no parameter is provided, the {@link Section#DEFAULT} option is assumed. * @return Response from Redis containing a String with the information for the @@ -51,7 +51,7 @@ public interface ServerManagementCommands { /** * Changes the currently selected Redis database. * - * @see redis.io for details. + * @see valkey.io for details. * @param index The index of the database to select. * @return A simple OK response. * @example @@ -65,7 +65,7 @@ public interface ServerManagementCommands { /** * Rewrites the configuration file with the current configuration. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK when the configuration was rewritten properly, otherwise an error is * thrown. * @example @@ -78,10 +78,10 @@ public interface ServerManagementCommands { /** * Resets the statistics reported by Redis using the INFO and LATENCY HISTOGRAM commands. + * href="https://valkey.io/commands/info/">INFO and LATENCY HISTOGRAM commands. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK to confirm that the statistics were successfully reset. * @example *
              {@code
              @@ -94,7 +94,7 @@ public interface ServerManagementCommands {
                   /**
                    * Reads the configuration parameters of a running Redis server.
                    *
              -     * @see redis.io for details.
              +     * @see valkey.io for details.
                    * @param parameters An array of configuration parameter names to retrieve values
                    *     for.
                    * @return A map of values corresponding to the configuration parameters.
              @@ -110,7 +110,7 @@ public interface ServerManagementCommands {
                   /**
                    * Sets configuration parameters to the specified values.
                    *
              -     * @see redis.io for details.
              +     * @see valkey.io for details.
                    * @param parameters A map consisting of configuration parameters and their
                    *     respective values to set.
                    * @return OK if all configurations have been successfully set. Otherwise, raises an
              @@ -126,7 +126,7 @@ public interface ServerManagementCommands {
                   /**
                    * Returns the server time.
                    *
              -     * @see redis.io for details.
              +     * @see valkey.io for details.
                    * @return The current server time as a String array with two elements: A 
                    *     UNIX TIME and the amount of microseconds already elapsed in the current second. The
                    *     returned array is in a [UNIX TIME, Microseconds already elapsed] format.
              @@ -142,7 +142,7 @@ public interface ServerManagementCommands {
                    * Returns UNIX TIME of the last DB save timestamp or startup timestamp if no save
                    * was made since then.
                    *
              -     * @see redis.io for details.
              +     * @see valkey.io for details.
                    * @return UNIX TIME of the last DB save executed with success.
                    * @example
                    *     
              {@code
              @@ -211,7 +211,7 @@ public interface ServerManagementCommands {
                   /**
                    * Displays a piece of generative computer art and the Redis version.
                    *
              -     * @see redis.io for details.
              +     * @see valkey.io for details.
                    * @return A piece of generative computer art along with the current Redis version.
                    * @example
                    *     
              {@code
              @@ -225,7 +225,7 @@ public interface ServerManagementCommands {
                   /**
                    * Displays a piece of generative computer art and the Redis version.
                    *
              -     * @see redis.io for details.
              +     * @see valkey.io for details.
                    * @param parameters Additional set of arguments in order to change the output:
                    *     
                *
              • On Redis version 5, those are length of the line, number of squares per @@ -248,7 +248,7 @@ public interface ServerManagementCommands { * Displays a piece of generative computer art and the Redis version. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @return A piece of generative computer art along with the current Redis version. * @example @@ -264,7 +264,7 @@ public interface ServerManagementCommands { * Displays a piece of generative computer art and the Redis version. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @param parameters Additional set of arguments in order to change the output: *
                  diff --git a/java/client/src/main/java/glide/api/commands/SetBaseCommands.java b/java/client/src/main/java/glide/api/commands/SetBaseCommands.java index cdf21022f9..1e560d0ff5 100644 --- a/java/client/src/main/java/glide/api/commands/SetBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/SetBaseCommands.java @@ -21,7 +21,7 @@ public interface SetBaseCommands { * Adds specified members to the set stored at key. Specified members that are * already a member of this set are ignored. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key where members will be added to its set. * @param members A list of members to add to the set stored at key. * @return The number of members that were added to the set, excluding members already present. @@ -39,7 +39,7 @@ public interface SetBaseCommands { * Adds specified members to the set stored at key. Specified members that are * already a member of this set are ignored. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key where members will be added to its set. * @param members A list of members to add to the set stored at key. * @return The number of members that were added to the set, excluding members already present. @@ -57,7 +57,7 @@ public interface SetBaseCommands { * Removes specified members from the set stored at key. Specified members that are * not a member of this set are ignored. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which members will be removed. * @param members A list of members to remove from the set stored at key. * @return The number of members that were removed from the set, excluding non-existing members. @@ -75,7 +75,7 @@ public interface SetBaseCommands { * Removes specified members from the set stored at key. Specified members that are * not a member of this set are ignored. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which members will be removed. * @param members A list of members to remove from the set stored at key. * @return The number of members that were removed from the set, excluding non-existing members. @@ -92,7 +92,7 @@ public interface SetBaseCommands { /** * Retrieves all the members of the set value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set members. * @return A Set of all members of the set. * @remarks If key does not exist an empty set will be returned. @@ -107,7 +107,7 @@ public interface SetBaseCommands { /** * Retrieves all the members of the set value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set members. * @return A Set of all members of the set. * @remarks If key does not exist an empty set will be returned. @@ -122,7 +122,7 @@ public interface SetBaseCommands { /** * Retrieves the set cardinality (number of elements) of the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the number of set members. * @return The cardinality (number of elements) of the set, or 0 if the key does not exist. * @example @@ -136,7 +136,7 @@ public interface SetBaseCommands { /** * Retrieves the set cardinality (number of elements) of the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the number of set members. * @return The cardinality (number of elements) of the set, or 0 if the key does not exist. * @example @@ -150,7 +150,7 @@ public interface SetBaseCommands { /** * Checks whether each member is contained in the members of the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set to check. * @param members A list of members to check for existence in the set. * @return An array of Boolean values, each indicating if the respective @@ -166,7 +166,7 @@ public interface SetBaseCommands { /** * Checks whether each member is contained in the members of the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set to check. * @param members A list of members to check for existence in the set. * @return An array of Boolean values, each indicating if the respective @@ -186,7 +186,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, both source and destination must map * to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param source The key of the set to remove the element from. * @param destination The key of the set to add the element to. * @param member The set element to move. @@ -207,7 +207,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, both source and destination must map * to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param source The key of the set to remove the element from. * @param destination The key of the set to add the element to. * @param member The set element to move. @@ -224,7 +224,7 @@ public interface SetBaseCommands { /** * Returns if member is a member of the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @param member The member to check for existence in the set. * @return true if the member exists in the set, false otherwise. If @@ -244,7 +244,7 @@ public interface SetBaseCommands { /** * Returns if member is a member of the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @param member The member to check for existence in the set. * @return true if the member exists in the set, false otherwise. If @@ -265,7 +265,7 @@ public interface SetBaseCommands { * Computes the difference between the first set and all the successive sets in keys. * * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets to diff. * @return A Set of elements representing the difference between the sets.
                  * If the a key does not exist, it is treated as an empty set. @@ -281,7 +281,7 @@ public interface SetBaseCommands { * Computes the difference between the first set and all the successive sets in keys. * * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets to diff. * @return A Set of elements representing the difference between the sets.
                  * If the a key does not exist, it is treated as an empty set. @@ -299,7 +299,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys of the sets to diff. * @return The number of elements in the resulting set. @@ -317,7 +317,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys of the sets to diff. * @return The number of elements in the resulting set. @@ -333,7 +333,7 @@ public interface SetBaseCommands { * Gets the intersection of all the given sets. * * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @return A Set of members which are present in all given sets.
                  * If one or more sets do not exist, an empty set will be returned. @@ -352,7 +352,7 @@ public interface SetBaseCommands { * Gets the intersection of all the given sets. * * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @return A Set of members which are present in all given sets.
                  * If one or more sets do not exist, an empty set will be returned. @@ -372,7 +372,7 @@ public interface SetBaseCommands { * * @since Redis 7.0 and above. * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @return The cardinality of the intersection result. If one or more sets do not exist, 0 * is returned. @@ -392,7 +392,7 @@ public interface SetBaseCommands { * * @since Redis 7.0 and above. * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @return The cardinality of the intersection result. If one or more sets do not exist, 0 * is returned. @@ -412,7 +412,7 @@ public interface SetBaseCommands { * * @since Redis 7.0 and above. * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @param limit The limit for the intersection cardinality value. * @return The cardinality of the intersection result. If one or more sets do not exist, 0 @@ -438,7 +438,7 @@ public interface SetBaseCommands { * * @since Redis 7.0 and above. * @apiNote When in cluster mode, all keys must map to the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @param limit The limit for the intersection cardinality value. * @return The cardinality of the intersection result. If one or more sets do not exist, 0 @@ -465,7 +465,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys from which to retrieve the set members. * @return The number of elements in the resulting set. @@ -483,7 +483,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys from which to retrieve the set members. * @return The number of elements in the resulting set. @@ -501,7 +501,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys from which to retrieve the set members. * @return The number of elements in the resulting set. @@ -519,7 +519,7 @@ public interface SetBaseCommands { * * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys from which to retrieve the set members. * @return The number of elements in the resulting set. @@ -534,7 +534,7 @@ public interface SetBaseCommands { /** * Returns a random element from the set value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set member. * @return A random element from the set, or null if key does not exist. * @example @@ -549,7 +549,7 @@ public interface SetBaseCommands { /** * Returns a random element from the set value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set member. * @return A random element from the set, or null if key does not exist. * @example @@ -564,7 +564,7 @@ public interface SetBaseCommands { /** * Returns one or more random elements from the set value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set members. * @param count The number of elements to return.
                  * If count is positive, returns unique elements.
                  @@ -583,7 +583,7 @@ public interface SetBaseCommands { /** * Returns one or more random elements from the set value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set members. * @param count The number of elements to return.
                  * If count is positive, returns unique elements.
                  @@ -602,7 +602,7 @@ public interface SetBaseCommands { /** * Removes and returns one random member from the set stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @return The value of the popped member.
                  * If key does not exist, null will be returned. @@ -621,7 +621,7 @@ public interface SetBaseCommands { * Removes and returns up to count random members from the set stored at key * , depending on the set's length. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @param count The count of the elements to pop from the set. * @return A set of popped elements will be returned depending on the set's length.
                  diff --git a/java/client/src/main/java/glide/api/commands/SortedSetBaseCommands.java b/java/client/src/main/java/glide/api/commands/SortedSetBaseCommands.java index 1342569a3e..48965c555d 100644 --- a/java/client/src/main/java/glide/api/commands/SortedSetBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/SortedSetBaseCommands.java @@ -47,7 +47,7 @@ public interface SortedSetBaseCommands { * Adds members with their scores to the sorted set stored at key.
                  * If a member is already a part of the sorted set, its score is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @param options The ZAdd options. @@ -73,7 +73,7 @@ CompletableFuture zadd( * Adds members with their scores to the sorted set stored at key.
                  * If a member is already a part of the sorted set, its score is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @param options The ZAdd options. @@ -96,7 +96,7 @@ CompletableFuture zadd( * Adds members with their scores to the sorted set stored at key.
                  * If a member is already a part of the sorted set, its score is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @param changed Modify the return value from the number of new elements added, to the total @@ -115,7 +115,7 @@ CompletableFuture zadd( * Adds members with their scores to the sorted set stored at key.
                  * If a member is already a part of the sorted set, its score is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @return The number of elements added to the sorted set. @@ -136,7 +136,7 @@ CompletableFuture zadd( * member is created.
                  * zaddIncr with empty option acts as {@link #zincrby(String, double, String)}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member A member in the sorted set to increment. * @param increment The score to increment the member. @@ -166,7 +166,7 @@ CompletableFuture zaddIncr( * If key does not exist, a new sorted set with the specified member as its sole * member is created. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member A member in the sorted set to increment. * @param increment The score to increment the member. @@ -183,7 +183,7 @@ CompletableFuture zaddIncr( * Removes the specified members from the sorted set stored at key.
                  * Specified members that are not a member of this set are ignored. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param members An array of members to remove from the sorted set. * @return The number of members that were removed from the sorted set, not including non-existing @@ -205,7 +205,7 @@ CompletableFuture zaddIncr( * Removes the specified members from the sorted set stored at key.
                  * Specified members that are not a member of this set are ignored. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param members An array of members to remove from the sorted set. * @return The number of members that were removed from the sorted set, not including non-existing @@ -226,7 +226,7 @@ CompletableFuture zaddIncr( /** * Returns the cardinality (number of elements) of the sorted set stored at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return The number of elements in the sorted set.
                  * If key does not exist, it is treated as an empty sorted set, and this command @@ -245,7 +245,7 @@ CompletableFuture zaddIncr( /** * Returns the cardinality (number of elements) of the sorted set stored at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return The number of elements in the sorted set.
                  * If key does not exist, it is treated as an empty sorted set, and this command @@ -265,7 +265,7 @@ CompletableFuture zaddIncr( * Removes and returns up to count members with the lowest scores from the sorted set * stored at the specified key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count Specifies the quantity of members to pop.
                  * If count is higher than the sorted set's cardinality, returns all members and @@ -286,7 +286,7 @@ CompletableFuture zaddIncr( * Removes and returns the member with the lowest score from the sorted set stored at the * specified key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return A map containing the removed member and its corresponding score.
                  * If key doesn't exist, it will be treated as an empty sorted set and the @@ -313,7 +313,7 @@ CompletableFuture zaddIncr( * Commands for more details and best practices. *
                * - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param timeout The number of seconds to wait for a blocking operation to complete. A value of * 0 will block indefinitely. @@ -333,7 +333,7 @@ CompletableFuture zaddIncr( * Removes and returns up to count members with the highest scores from the sorted * set stored at the specified key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count Specifies the quantity of members to pop.
                * If count is higher than the sorted set's cardinality, returns all members and @@ -354,7 +354,7 @@ CompletableFuture zaddIncr( * Removes and returns the member with the highest score from the sorted set stored at the * specified key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return A map containing the removed member and its corresponding score.
                * If key doesn't exist, it will be treated as an empty sorted set and the @@ -381,7 +381,7 @@ CompletableFuture zaddIncr( * Commands for more details and best practices. *
              * - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param timeout The number of seconds to wait for a blocking operation to complete. A value of * 0 will block indefinitely. @@ -400,7 +400,7 @@ CompletableFuture zaddIncr( /** * Returns the score of member in the sorted set stored at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose score is to be retrieved. * @return The score of the member.
              @@ -420,7 +420,7 @@ CompletableFuture zaddIncr( /** * Returns the score of member in the sorted set stored at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose score is to be retrieved. * @return The score of the member.
              @@ -443,7 +443,7 @@ CompletableFuture zaddIncr( * score, or by lexicographical order.
              * To get the elements with their scores, see {@link #zrangeWithScores}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
              *
                @@ -475,7 +475,7 @@ CompletableFuture zaddIncr( * score, or by lexicographical order.
                * To get the elements with their scores, see {@link #zrangeWithScores}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                *
                  @@ -503,7 +503,7 @@ CompletableFuture zaddIncr( * Returns the specified range of elements with their scores in the sorted set stored at key * . Similar to {@link #zrange} but with a WITHSCORE flag. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                  *
                    @@ -534,7 +534,7 @@ CompletableFuture> zrangeWithScores( * Returns the specified range of elements with their scores in the sorted set stored at key * . Similar to {@link #zrange} but with a WITHSCORE flag. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                    *
                      @@ -565,7 +565,7 @@ CompletableFuture> zrangeWithScores( * * @apiNote When in cluster mode, destination and source must map to the * same hash slot. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the destination sorted set. * @param source The key of the source sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                      @@ -599,7 +599,7 @@ CompletableFuture zrangestore( * * @apiNote When in cluster mode, destination and source must map to the * same hash slot. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the destination sorted set. * @param source The key of the source sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                      @@ -628,7 +628,7 @@ CompletableFuture zrangestore( * scores ordered from low to high, starting from 0.
                      * To get the rank of member with its score, see {@link #zrankWithScore}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return The rank of member in the sorted set.
                      @@ -650,7 +650,7 @@ CompletableFuture zrangestore( * scores ordered from low to high, starting from 0.
                      * To get the rank of member with its score, see {@link #zrankWithScore}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return The rank of member in the sorted set.
                      @@ -671,7 +671,7 @@ CompletableFuture zrangestore( * Returns the rank of member in the sorted set stored at key with its * score, where scores are ordered from the lowest to highest, starting from 0.
                      * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return An array containing the rank (as Long) and score (as Double) @@ -694,7 +694,7 @@ CompletableFuture zrangestore( * scores are ordered from the highest to lowest, starting from 0.
                      * To get the rank of member with its score, see {@link #zrevrankWithScore}. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return The rank of member in the sorted set, where ranks are ordered from high to @@ -716,7 +716,7 @@ CompletableFuture zrangestore( * Returns the rank of member in the sorted set stored at key with its * score, where scores are ordered from the highest to lowest, starting from 0. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return An array containing the rank (as Long) and score (as Double) @@ -739,7 +739,7 @@ CompletableFuture zrangestore( * Returns the scores associated with the specified members in the sorted set stored * at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param members An array of members in the sorted set. * @return An Array of scores of the members.
                      @@ -757,7 +757,7 @@ CompletableFuture zrangestore( * Returns the scores associated with the specified members in the sorted set stored * at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param members An array of members in the sorted set. * @return An Array of scores of the members.
                      @@ -777,7 +777,7 @@ CompletableFuture zrangestore( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return An array of elements representing the difference between the sorted sets. *
                      @@ -796,7 +796,7 @@ CompletableFuture zrangestore( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return A Map of elements and their scores representing the difference between the * sorted sets.
                      @@ -818,7 +818,7 @@ CompletableFuture zrangestore( * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the resulting sorted set. * @param keys The keys of the sorted sets to compare. * @return The number of members in the resulting sorted set stored at destination. @@ -838,7 +838,7 @@ CompletableFuture zrangestore( * @apiNote When in cluster mode, destination and all keys must map to * the same hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the resulting sorted set. * @param keys The keys of the sorted sets to compare. * @return The number of members in the resulting sorted set stored at destination. @@ -854,7 +854,7 @@ CompletableFuture zrangestore( * Returns the number of members in the sorted set stored at key with scores between * minScore and maxScore. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minScore The minimum score to count from. Can be an implementation of {@link * InfScoreBound} representing positive/negative infinity, or {@link ScoreBoundary} @@ -883,7 +883,7 @@ CompletableFuture zrangestore( * indexes with 0 being the element with the lowest score. These indexes can be * negative numbers, where they indicate offsets starting at the element with the highest score. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param start The starting point of the range. * @param end The end of the range. @@ -910,7 +910,7 @@ CompletableFuture zrangestore( * indexes with 0 being the element with the lowest score. These indexes can be * negative numbers, where they indicate offsets starting at the element with the highest score. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param start The starting point of the range. * @param end The end of the range. @@ -935,7 +935,7 @@ CompletableFuture zrangestore( * Removes all elements in the sorted set stored at key with a lexicographical order * between minLex and maxLex. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minLex The minimum bound of the lexicographical range. Can be an implementation of * {@link InfLexBound} representing positive/negative infinity, or {@link LexBoundary} @@ -962,7 +962,7 @@ CompletableFuture zrangestore( * Removes all elements in the sorted set stored at key with a score between * minScore and maxScore. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minScore The minimum score to remove from. Can be an implementation of {@link * InfScoreBound} representing positive/negative infinity, or {@link ScoreBoundary} @@ -989,7 +989,7 @@ CompletableFuture zrangestore( * Returns the number of members in the sorted set stored at key with scores between * minLex and maxLex. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minLex The minimum lex to count from. Can be an implementation of {@link InfLexBound} * representing positive/negative infinity, or {@link LexBoundary} representing a specific lex @@ -1019,7 +1019,7 @@ CompletableFuture zrangestore( * * @apiNote When in cluster mode, destination and all keys in * keysOrWeightedKeys must map to the same hash slot. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                        @@ -1047,7 +1047,7 @@ CompletableFuture zunionstore( * * @apiNote When in cluster mode, destination and all keys in * keysOrWeightedKeys must map to the same hash slot. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                          @@ -1072,7 +1072,7 @@ CompletableFuture zunionstore( * * @apiNote When in cluster mode, destination and all keys in * keysOrWeightedKeys must map to the same hash slot. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                            @@ -1100,7 +1100,7 @@ CompletableFuture zinterstore( * * @apiNote When in cluster mode, destination and all keys in * keysOrWeightedKeys must map to the same hash slot. - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                              @@ -1124,7 +1124,7 @@ CompletableFuture zinterstore( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param modifier The element pop criteria - either {@link ScoreFilter#MIN} or {@link * ScoreFilter#MAX} to pop the member with the lowest/highest score accordingly. @@ -1147,7 +1147,7 @@ CompletableFuture zinterstore( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param modifier The element pop criteria - either {@link ScoreFilter#MIN} or {@link * ScoreFilter#MAX} to pop members with the lowest/highest scores accordingly. @@ -1180,7 +1180,7 @@ CompletableFuture zinterstore( * * * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param modifier The element pop criteria - either {@link ScoreFilter#MIN} or {@link * ScoreFilter#MAX} to pop members with the lowest/highest scores accordingly. @@ -1214,7 +1214,7 @@ CompletableFuture zinterstore( * * * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param modifier The element pop criteria - either {@link ScoreFilter#MIN} or {@link * ScoreFilter#MAX} to pop members with the lowest/highest scores accordingly. @@ -1242,7 +1242,7 @@ CompletableFuture bzmpop( * * @apiNote When in cluster mode, all keys in keys must map to the same hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return The resulting sorted set from the union. * @example @@ -1265,7 +1265,7 @@ CompletableFuture bzmpop( * @apiNote When in cluster mode, all keys in keysOrWeightedKeys must map to the same * hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                *
                              • Use {@link KeyArray} for keys only. @@ -1298,7 +1298,7 @@ CompletableFuture> zunionWithScores( * @apiNote When in cluster mode, all keys in keysOrWeightedKeys must map to the same * hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                  *
                                • Use {@link KeyArray} for keys only. @@ -1326,7 +1326,7 @@ CompletableFuture> zunionWithScores( * * @apiNote When in cluster mode, all keys in keys must map to the same hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return The resulting sorted set from the intersection. * @example @@ -1350,7 +1350,7 @@ CompletableFuture> zunionWithScores( * @apiNote When in cluster mode, all keys in keysOrWeightedKeys must map to the same * hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                    *
                                  • Use {@link KeyArray} for keys only. @@ -1378,7 +1378,7 @@ CompletableFuture> zunionWithScores( * @apiNote When in cluster mode, all keys in keysOrWeightedKeys must map to the same * hash slot. * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                      *
                                    • Use {@link KeyArray} for keys only. @@ -1405,7 +1405,7 @@ CompletableFuture> zinterWithScores( /** * Returns a random element from the sorted set stored at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return A String representing a random element from the sorted set.
                                      * If the sorted set does not exist or is empty, the response will be null. @@ -1423,7 +1423,7 @@ CompletableFuture> zinterWithScores( /** * Retrieves random elements from the sorted set stored at key. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count The number of elements to return.
                                      * If count is positive, returns unique elements.
                                      @@ -1446,7 +1446,7 @@ CompletableFuture> zinterWithScores( * Retrieves random elements along with their scores from the sorted set stored at key * . * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count The number of elements to return.
                                      * If count is positive, returns unique elements.
                                      @@ -1473,7 +1473,7 @@ CompletableFuture> zinterWithScores( * as its score. If key does not exist, a new sorted set with the specified * member as its sole member is created. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param increment The score increment. * @param member A member of the sorted set. @@ -1493,7 +1493,7 @@ CompletableFuture> zinterWithScores( * as its score. If key does not exist, a new sorted set with the specified * member as its sole member is created. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param increment The score increment. * @param member A member of the sorted set. @@ -1511,7 +1511,7 @@ CompletableFuture> zinterWithScores( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets to intersect. * @return The cardinality of the intersection of the given sorted sets. * @example @@ -1527,7 +1527,7 @@ CompletableFuture> zinterWithScores( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets to intersect. * @return The cardinality of the intersection of the given sorted sets. * @example @@ -1545,7 +1545,7 @@ CompletableFuture> zinterWithScores( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets to intersect. * @param limit Specifies a maximum number for the intersection cardinality. If limit is set to * 0 the range will be unlimited. @@ -1566,7 +1566,7 @@ CompletableFuture> zinterWithScores( * * @apiNote When in cluster mode, all keys must map to the same hash slot. * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets to intersect. * @param limit Specifies a maximum number for the intersection cardinality. If limit is set to * 0 the range will be unlimited. diff --git a/java/client/src/main/java/glide/api/commands/StringBaseCommands.java b/java/client/src/main/java/glide/api/commands/StringBaseCommands.java index 794c4bc5d7..4767417d1a 100644 --- a/java/client/src/main/java/glide/api/commands/StringBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/StringBaseCommands.java @@ -36,7 +36,7 @@ public interface StringBaseCommands { * Gets the value associated with the given key, or null if no such * value exists. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @return Response from Redis. If key exists, returns the value of * key as a String. Otherwise, return null. @@ -55,7 +55,7 @@ public interface StringBaseCommands { * Gets the value associated with the given key, or null if no such * value exists. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @return Response from Redis. If key exists, returns the value of * key as a String. Otherwise, return null. @@ -73,7 +73,7 @@ public interface StringBaseCommands { /** * Gets a string value associated with the given key and deletes the key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @return If key exists, returns the value of key. * Otherwise, return null. @@ -91,7 +91,7 @@ public interface StringBaseCommands { /** * Gets a string value associated with the given key and deletes the key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @return If key exists, returns the value of key. * Otherwise, return null. @@ -110,7 +110,7 @@ public interface StringBaseCommands { * Gets the value associated with the given key. * * @since Redis 6.2.0. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @return If key exists, return the value of the key. * Otherwise, return null. @@ -126,7 +126,7 @@ public interface StringBaseCommands { * Gets the value associated with the given key. * * @since Redis 6.2.0. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @return If key exists, return the value of the key. * Otherwise, return null. @@ -142,7 +142,7 @@ public interface StringBaseCommands { * Gets the value associated with the given key. * * @since Redis 6.2.0. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @param options The {@link GetExOptions} options. * @return If key exists, return the value of the key. @@ -161,7 +161,7 @@ public interface StringBaseCommands { * Gets the value associated with the given key. * * @since Redis 6.2.0. - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to retrieve from the database. * @param options The {@link GetExOptions} options. * @return If key exists, return the value of the key. @@ -179,7 +179,7 @@ public interface StringBaseCommands { /** * Sets the given key with the given value. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to store. * @param value The value to store with the given key. * @return Response from Redis containing "OK". @@ -194,7 +194,7 @@ public interface StringBaseCommands { /** * Sets the given key with the given value. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to store. * @param value The value to store with the given key. * @return Response from Redis containing "OK". @@ -209,7 +209,7 @@ public interface StringBaseCommands { /** * Sets the given key with the given value. Return value is dependent on the passed options. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to store. * @param value The value to store with the given key. * @param options The Set options. @@ -230,7 +230,7 @@ public interface StringBaseCommands { /** * Sets the given key with the given value. Return value is dependent on the passed options. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to store. * @param value The value to store with the given key. * @param options The Set options. @@ -253,7 +253,7 @@ public interface StringBaseCommands { * * @apiNote When in cluster mode, the command may route to multiple nodes when keys * map to different hash slots. - * @see redis.io for details. + * @see valkey.io for details. * @param keys A list of keys to retrieve values for. * @return An array of values corresponding to the provided keys.
                                      * If a keyis not found, its corresponding value in the list will be null @@ -271,7 +271,7 @@ public interface StringBaseCommands { * * @apiNote When in cluster mode, the command may route to multiple nodes when keys * map to different hash slots. - * @see redis.io for details. + * @see valkey.io for details. * @param keys A list of keys to retrieve values for. * @return An array of values corresponding to the provided keys.
                                      * If a keyis not found, its corresponding value in the list will be null @@ -289,7 +289,7 @@ public interface StringBaseCommands { * * @apiNote When in cluster mode, the command may route to multiple nodes when keys in * keyValueMap map to different hash slots. - * @see redis.io for details. + * @see valkey.io for details. * @param keyValueMap A key-value map consisting of keys and their respective values to set. * @return Always OK. * @example @@ -306,7 +306,7 @@ public interface StringBaseCommands { * * @apiNote When in cluster mode, all keys in keyValueMap must map to the same hash * slot. - * @see redis.io for details. + * @see valkey.io for details. * @param keyValueMap A key-value map consisting of keys and their respective values to set. * @return true if all keys were set. false if no key was set. * @example @@ -321,7 +321,7 @@ public interface StringBaseCommands { * Increments the number stored at key by one. If key does not exist, it * is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to increment its value. * @return The value of key after the increment. * @example @@ -336,7 +336,7 @@ public interface StringBaseCommands { * Increments the number stored at key by one. If key does not exist, it * is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to increment its value. * @return The value of key after the increment. * @example @@ -351,7 +351,7 @@ public interface StringBaseCommands { * Increments the number stored at key by amount. If key * does not exist, it is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to increment its value. * @param amount The amount to increment. * @return The value of key after the increment. @@ -367,7 +367,7 @@ public interface StringBaseCommands { * Increments the number stored at key by amount. If key * does not exist, it is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to increment its value. * @param amount The amount to increment. * @return The value of key after the increment. @@ -385,7 +385,7 @@ public interface StringBaseCommands { * key is decremented. If key does not exist, it is set to 0 before * performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to increment its value. * @param amount The amount to increment. * @return The value of key after the increment. @@ -403,7 +403,7 @@ public interface StringBaseCommands { * key is decremented. If key does not exist, it is set to 0 before * performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to increment its value. * @param amount The amount to increment. * @return The value of key after the increment. @@ -419,7 +419,7 @@ public interface StringBaseCommands { * Decrements the number stored at key by one. If key does not exist, it * is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to decrement its value. * @return The value of key after the decrement. * @example @@ -434,7 +434,7 @@ public interface StringBaseCommands { * Decrements the number stored at key by one. If key does not exist, it * is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to decrement its value. * @return The value of key after the decrement. * @example @@ -449,7 +449,7 @@ public interface StringBaseCommands { * Decrements the number stored at key by amount. If key * does not exist, it is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to decrement its value. * @param amount The amount to decrement. * @return The value of key after the decrement. @@ -465,7 +465,7 @@ public interface StringBaseCommands { * Decrements the number stored at key by amount. If key * does not exist, it is set to 0 before performing the operation. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to decrement its value. * @param amount The amount to decrement. * @return The value of key after the decrement. @@ -480,7 +480,7 @@ public interface StringBaseCommands { /** * Returns the length of the string value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to check its length. * @return The length of the string value stored at key.
                                      * If key does not exist, it is treated as an empty string, and the command @@ -500,7 +500,7 @@ public interface StringBaseCommands { /** * Returns the length of the string value stored at key. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to check its length. * @return The length of the string value stored at key.
                                      * If key does not exist, it is treated as an empty string, and the command @@ -524,7 +524,7 @@ public interface StringBaseCommands { * the string is padded with zero bytes to make offset fit. Creates the key * if it doesn't exist. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the string to update. * @param offset The position in the string where value should be written. * @param value The string written with offset. @@ -547,7 +547,7 @@ public interface StringBaseCommands { * key * if it doesn't exist. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the GlideString to update. * @param offset The position in the GlideString where value should be written. * @param value The GlideString written with offset. @@ -568,7 +568,7 @@ public interface StringBaseCommands { * order to provide an offset starting from the end of the string. So -1 means the * last character, -2 the penultimate and so forth. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the string. * @param start The starting offset. * @param end The ending offset. @@ -590,7 +590,7 @@ public interface StringBaseCommands { * be used in order to provide an offset starting from the end of the GlideString. So -1 * means the last character, -2 the penultimate and so forth. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the GlideString. * @param start The starting offset. * @param end The ending offset. @@ -611,7 +611,7 @@ public interface StringBaseCommands { * created and set as an empty string, so APPEND will be similar to {@see #set} in * this special case. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the string. * @param value The value to append. * @return The length of the string after appending the value. @@ -628,7 +628,7 @@ public interface StringBaseCommands { * created and set as an empty string, so APPEND will be similar to {@see #set} in * this special case. * - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the string. * @param value The value to append. * @return The length of the string after appending the value. diff --git a/java/client/src/main/java/glide/api/commands/TransactionsBaseCommands.java b/java/client/src/main/java/glide/api/commands/TransactionsBaseCommands.java index 217795a3cf..18158e1ebd 100644 --- a/java/client/src/main/java/glide/api/commands/TransactionsBaseCommands.java +++ b/java/client/src/main/java/glide/api/commands/TransactionsBaseCommands.java @@ -17,7 +17,7 @@ public interface TransactionsBaseCommands { * * @apiNote When in cluster mode, the command may route to multiple nodes when keys * map to different hash slots. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys to watch. * @return OK. * @example @@ -43,7 +43,7 @@ public interface TransactionsBaseCommands { * * @apiNote When in cluster mode, the command may route to multiple nodes when keys * map to different hash slots. - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys to watch. * @return OK. * @example diff --git a/java/client/src/main/java/glide/api/commands/TransactionsClusterCommands.java b/java/client/src/main/java/glide/api/commands/TransactionsClusterCommands.java index cadbac86c9..38b840e8fb 100644 --- a/java/client/src/main/java/glide/api/commands/TransactionsClusterCommands.java +++ b/java/client/src/main/java/glide/api/commands/TransactionsClusterCommands.java @@ -15,7 +15,7 @@ public interface TransactionsClusterCommands { * automatically flush all previously watched keys.
                                      * The command will be routed to all primary nodes. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK. * @example *
                                      {@code
                                      @@ -29,7 +29,7 @@ public interface TransactionsClusterCommands {
                                            * Flushes all the previously watched keys for a transaction. Executing a transaction will
                                            * automatically flush all previously watched keys.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param route Specifies the routing configuration for the command. The client will route the
                                            *     command to the nodes defined by route.
                                            * @return OK.
                                      diff --git a/java/client/src/main/java/glide/api/commands/TransactionsCommands.java b/java/client/src/main/java/glide/api/commands/TransactionsCommands.java
                                      index 994a3561bd..a32b1b6101 100644
                                      --- a/java/client/src/main/java/glide/api/commands/TransactionsCommands.java
                                      +++ b/java/client/src/main/java/glide/api/commands/TransactionsCommands.java
                                      @@ -13,7 +13,7 @@ public interface TransactionsCommands {
                                            * Flushes all the previously watched keys for a transaction. Executing a transaction will
                                            * automatically flush all previously watched keys.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @return OK.
                                            * @example
                                            *     
                                      {@code
                                      diff --git a/java/client/src/main/java/glide/api/models/BaseTransaction.java b/java/client/src/main/java/glide/api/models/BaseTransaction.java
                                      index 2e8f08d9b0..21ad7475b1 100644
                                      --- a/java/client/src/main/java/glide/api/models/BaseTransaction.java
                                      +++ b/java/client/src/main/java/glide/api/models/BaseTransaction.java
                                      @@ -343,7 +343,7 @@ public  T customCommand(ArgType[] args) {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see valkey.io for details.
                                            * @param message The message to be echoed back.
                                            * @return Command Response - The provided message.
                                            */
                                      @@ -356,7 +356,7 @@ public  T echo(@NonNull ArgType message) {
                                           /**
                                            * Pings the Redis server.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @return Command Response - A response from Redis with a String.
                                            */
                                           public T ping() {
                                      @@ -369,7 +369,7 @@ public T ping() {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param msg The ping argument that will be returned.
                                            * @return Command Response - A response from Redis with a String.
                                            */
                                      @@ -383,7 +383,7 @@ public  T ping(@NonNull ArgType msg) {
                                            * Gets information and statistics about the Redis server using the {@link Section#DEFAULT}
                                            * option.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @return Command Response - A String with server info.
                                            */
                                           public T info() {
                                      @@ -394,7 +394,7 @@ public T info() {
                                           /**
                                            * Gets information and statistics about the Redis server.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param options A list of {@link Section} values specifying which sections of information to
                                            *     retrieve. When no parameter is provided, the {@link Section#DEFAULT} option is assumed.
                                            * @return Command Response - A String containing the requested {@link Section}s.
                                      @@ -410,7 +410,7 @@ public T info(@NonNull InfoOptions options) {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param keys The keys we wanted to remove.
                                            * @return Command Response - The number of keys that were removed.
                                            */
                                      @@ -425,7 +425,7 @@ public  T del(@NonNull ArgType[] keys) {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param key The key to retrieve from the database.
                                            * @return Command Response - If key exists, returns the value of 
                                            *      key as a String. Otherwise, return null.
                                      @@ -441,7 +441,7 @@ public  T get(@NonNull ArgType key) {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param key The key to retrieve from the database.
                                            * @return Command Response - If key exists, returns the value of 
                                            *      key. Otherwise, return null.
                                      @@ -458,7 +458,7 @@ public  T getdel(@NonNull ArgType key) {
                                            * @since Redis 6.2.0.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param key The key to retrieve from the database.
                                            * @return Command Response - If key exists, return the value of the
                                            *     key. Otherwise, return null.
                                      @@ -475,7 +475,7 @@ public  T getex(@NonNull ArgType key) {
                                            * @since Redis 6.2.0.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param key The key to retrieve from the database.
                                            * @param options The {@link GetExOptions} options.
                                            * @return Command Response - If key exists, return the value of the
                                      @@ -493,7 +493,7 @@ public  T getex(@NonNull ArgType key, @NonNull GetExOptions options) {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param key The key to store.
                                            * @param value The value to store with the given key.
                                            * @return Command Response - A response from Redis.
                                      @@ -507,7 +507,7 @@ public  T set(@NonNull ArgType key, @NonNull ArgType value) {
                                           /**
                                            * Sets the given key with the given value. Return value is dependent on the passed options.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key to store.
                                      @@ -532,7 +532,7 @@ public  T set(
                                            * created and set as an empty string, so APPEND will be similar to {@see #set} in
                                            * this special case.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key of the string.
                                      @@ -548,7 +548,7 @@ public  T append(@NonNull ArgType key, @NonNull ArgType value) {
                                           /**
                                            * Retrieves the values of multiple keys.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param keys A list of keys to retrieve values for.
                                      @@ -566,7 +566,7 @@ public  T mget(@NonNull ArgType[] keys) {
                                           /**
                                            * Sets multiple keys to multiple values in a single operation.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param keyValueMap A key-value map consisting of keys and their respective values to set.
                                            * @return Command Response - Always OK.
                                            */
                                      @@ -580,7 +580,7 @@ public T mset(@NonNull Map keyValueMap) {
                                            * Sets multiple keys to multiple values in a single operation. Performs no operation at all even
                                            * if just a single key already exists.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param keyValueMap A key-value map consisting of keys and their respective values to set.
                                            * @return Command Response - true if all keys were set, false if no key
                                            *     was set.
                                      @@ -595,7 +595,7 @@ public T msetnx(@NonNull Map keyValueMap) {
                                            * Increments the number stored at key by one. If key does not exist, it
                                            * is set to 0 before performing the operation.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key to increment its value.
                                      @@ -611,7 +611,7 @@ public  T incr(@NonNull ArgType key) {
                                            * Increments the number stored at key by amount. If key
                                            * does not exist, it is set to 0 before performing the operation.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key to increment its value.
                                      @@ -630,7 +630,7 @@ public  T incrBy(@NonNull ArgType key, long amount) {
                                            * key is decremented. If key does not exist, it is set to 0 before
                                            * performing the operation.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key to increment its value.
                                      @@ -648,7 +648,7 @@ public  T incrByFloat(@NonNull ArgType key, double amount) {
                                            * Decrements the number stored at key by one. If key does not exist, it
                                            * is set to 0 before performing the operation.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key to decrement its value.
                                      @@ -664,7 +664,7 @@ public  T decr(@NonNull ArgType key) {
                                            * Decrements the number stored at key by amount. If key
                                            * does not exist, it is set to 0 before performing the operation.
                                            *
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                            * @param key The key to decrement its value.
                                      @@ -682,7 +682,7 @@ public  T decrBy(@NonNull ArgType key, long amount) {
                                            *
                                            * @implNote ArgType is limited to String or GlideString, any other type will throw
                                            *     IllegalArgumentException
                                      -     * @see redis.io for details.
                                      +     * @see valkey.io for details.
                                            * @param key The key to check its length.
                                            * @return Command Response - The length of the string value stored at key.
                                      * If key does not exist, it is treated as an empty string, and the command @@ -703,7 +703,7 @@ public T strlen(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the string to update. * @param offset The position in the string where value should be written. * @param value The string written with offset. @@ -725,7 +725,7 @@ public T setrange(@NonNull ArgType key, int offset, @NonNull ArgType v * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the string. * @param start The starting offset. * @param end The ending offset. @@ -743,7 +743,7 @@ public T getrange(@NonNull ArgType key, int start, int end) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to retrieve from the database. * @return Command Response - The value associated with field, or null @@ -760,7 +760,7 @@ public T hget(@NonNull ArgType key, @NonNull ArgType field) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fieldValueMap A field-value map consisting of fields and their corresponding values to * be set in the hash stored at the specified key. @@ -782,7 +782,7 @@ public T hset(@NonNull ArgType key, @NonNull Map fie * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field to set the value for. * @param value The value to set. @@ -802,7 +802,7 @@ public T hsetnx(@NonNull ArgType key, @NonNull ArgType field, @NonNull * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fields The fields to remove from the hash stored at key. * @return Command Response - The number of fields that were removed from the hash, not including @@ -820,7 +820,7 @@ public T hdel(@NonNull ArgType key, @NonNull ArgType[] fields) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return Command Response - The number of fields in the hash, or 0 when the key * does not exist.
                                      @@ -837,7 +837,7 @@ public T hlen(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return Command Response - An array of values in the hash, or an empty array * when the key does not exist. @@ -853,7 +853,7 @@ public T hvals(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param fields The fields in the hash stored at key to retrieve from the database. * @return Command Response - An array of values associated with the given fields, in the same @@ -873,7 +873,7 @@ public T hmget(@NonNull ArgType key, @NonNull ArgType[] fields) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field to check in the hash stored at key. * @return Command Response - True if the hash contains the specified field. If the @@ -891,7 +891,7 @@ public T hexists(@NonNull ArgType key, @NonNull ArgType field) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return Command Response - A Map of fields and their values stored in the hash. * Every field name in the map is associated with its corresponding value.
                                      @@ -911,7 +911,7 @@ public T hgetall(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to increment or decrement its * value. @@ -936,7 +936,7 @@ public T hincrBy(@NonNull ArgType key, @NonNull ArgType field, long am * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param field The field in the hash stored at key to increment or decrement its * value. @@ -957,7 +957,7 @@ public T hincrByFloat(@NonNull ArgType key, @NonNull ArgType field, do * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details + * @see valkey.io for details * @param key The key of the hash. * @return Command Response - An array of field names in the hash, or an * empty array when the key does not exist. @@ -992,7 +992,7 @@ public T hstrlen(@NonNull ArgType key, @NonNull ArgType field) { * @since Redis 6.2 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @return Command Response - A random field name from the hash stored at key, or * null when the key does not exist. @@ -1010,7 +1010,7 @@ public T hrandfield(@NonNull ArgType key) { * @since Redis 6.2 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param count The number of field names to return.
                                      * If count is positive, returns unique elements.
                                      @@ -1031,7 +1031,7 @@ public T hrandfieldWithCount(@NonNull ArgType key, long count) { * @since Redis 6.2 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the hash. * @param count The number of field names to return.
                                      * If count is positive, returns unique elements.
                                      @@ -1056,7 +1056,7 @@ public T hrandfieldWithCountWithValues(@NonNull ArgType key, long coun * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the head of the list stored at key. * @return Command Response - The length of the list after the push operations. @@ -1073,7 +1073,7 @@ public T lpush(@NonNull ArgType key, @NonNull ArgType[] elements) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return Command Response - The value of the first element.
                                      * If key does not exist, null will be returned. @@ -1091,7 +1091,7 @@ public T lpop(@NonNull ArgType key) { * @since Redis 6.0.6. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @return Command Response - The index of the first occurrence of element, or @@ -1110,7 +1110,7 @@ public T lpos(@NonNull ArgType key, @NonNull ArgType element) { * @since Redis 6.0.6. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param options The LPos options. @@ -1131,7 +1131,7 @@ public T lpos( * @since Redis 6.0.6. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param count The number of matches wanted. @@ -1152,7 +1152,7 @@ public T lposCount(@NonNull ArgType key, @NonNull ArgType element, lon * @since Redis 6.0.6. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The name of the list. * @param element The value to search for within the list. * @param count The number of matches wanted. @@ -1181,7 +1181,7 @@ public T lposCount( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param count The count of the elements to pop from the list. * @return Command Response - An array of the popped elements will be returned depending on the @@ -1204,7 +1204,7 @@ public T lpopCount(@NonNull ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param start The starting point of the range. * @param end The end of the range. @@ -1231,7 +1231,7 @@ public T lrange(@NonNull ArgType key, long start, long end) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param index The index of the element in the list to retrieve. * @return Command Response - The element at index in the list stored at key @@ -1256,7 +1256,7 @@ public T lindex(@NonNull ArgType key, long index) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param start The starting point of the range. * @param end The end of the range. @@ -1279,7 +1279,7 @@ public T ltrim(@NonNull ArgType key, long start, long end) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return Command Response - The length of the list at key.
                                      * If key does not exist, it is interpreted as an empty list and 0 @@ -1303,7 +1303,7 @@ public T llen(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param count The count of the occurrences of elements equal to element to remove. * @param element The element to remove from the list. @@ -1325,7 +1325,7 @@ public T lrem(@NonNull ArgType key, long count, @NonNull ArgType eleme * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the tail of the list stored at key. * @return Command Response - The length of the list after the push operations. @@ -1342,7 +1342,7 @@ public T rpush(@NonNull ArgType key, @NonNull ArgType[] elements) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @return Command Response - The value of the last element.
                                      * If key does not exist, null will be returned. @@ -1359,7 +1359,7 @@ public T rpop(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param count The count of the elements to pop from the list. * @return Command Response - An array of popped elements will be returned depending on the list's * length.
                                      @@ -1377,7 +1377,7 @@ public T rpopCount(@NonNull ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key where members will be added to its set. * @param members A list of members to add to the set stored at key. * @return Command Response - The number of members that were added to the set, excluding members @@ -1396,7 +1396,7 @@ public T sadd(@NonNull ArgType key, @NonNull ArgType[] members) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @param member The member to check for existence in the set. * @return Command Response - true if the member exists in the set, false @@ -1415,7 +1415,7 @@ public T sismember(@NonNull ArgType key, @NonNull ArgType member) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which members will be removed. * @param members A list of members to remove from the set stored at key. * @return Command Response - The number of members that were removed from the set, excluding @@ -1434,7 +1434,7 @@ public T srem(@NonNull ArgType key, @NonNull ArgType[] members) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set members. * @return Command Response - A Set of all members of the set. * @remarks If key does not exist an empty set will be returned. @@ -1450,7 +1450,7 @@ public T smembers(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the number of set members. * @return Command Response - The cardinality (number of elements) of the set, or 0 if the key * does not exist. @@ -1466,7 +1466,7 @@ public T scard(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets to diff. * @return Command Response - A Set of elements representing the difference between * the sets.
                                      @@ -1483,7 +1483,7 @@ public T sdiff(@NonNull ArgType[] keys) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set to check. * @param members A list of members to check for existence in the set. * @return Command Response - An array of Boolean values, each @@ -1502,7 +1502,7 @@ public T smismember(@NonNull ArgType key, @NonNull ArgType[] members) * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys of the sets to diff. * @return Command Response - The number of elements in the resulting set. @@ -1521,7 +1521,7 @@ public T sdiffstore(@NonNull ArgType destination, @NonNull ArgType[] k * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param source The key of the set to remove the element from. * @param destination The key of the set to add the element to. * @param member The set element to move. @@ -1541,7 +1541,7 @@ public T smove( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @return Command Response - A Set of members which are present in all given sets. *
                                      @@ -1559,7 +1559,7 @@ public T sinter(@NonNull ArgType[] keys) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys from which to retrieve the set members. * @return Command Response - The number of elements in the resulting set. @@ -1577,7 +1577,7 @@ public T sinterstore(@NonNull ArgType destination, @NonNull ArgType[] * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @return Command Response - The cardinality of the intersection result. If one or more sets do * not exist, 0 is returned. @@ -1595,7 +1595,7 @@ public T sintercard(@NonNull ArgType[] keys) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the sets. * @param limit The limit for the intersection cardinality value. * @return Command Response - The cardinality of the intersection result. If one or more sets do @@ -1617,7 +1617,7 @@ public T sintercard(@NonNull ArgType[] keys, long limit) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination set. * @param keys The keys from which to retrieve the set members. * @return Command Response - The number of elements in the resulting set. @@ -1634,7 +1634,7 @@ public T sunionstore(@NonNull ArgType destination, @NonNull ArgType[] * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param parameters An array of configuration parameter names to retrieve values * for. * @return Command response - A map of values corresponding to the configuration @@ -1651,7 +1651,7 @@ public T configGet(@NonNull ArgType[] parameters) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param parameters A map consisting of configuration parameters and their * respective values to set. * @return Command response - OK if all configurations have been successfully set. @@ -1668,7 +1668,7 @@ public T configSet(@NonNull Map parameters) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys list to check. * @return Command Response - The number of keys that exist. If the same existing key is mentioned * in keys multiple times, it will be counted multiple times. @@ -1683,11 +1683,11 @@ public T exists(@NonNull ArgType[] keys) { * Unlinks (deletes) multiple keys from the database. A key is ignored if it does not * exist. This command, similar to DEL, removes specified keys and ignores non-existent ones. * However, this command does not block the server, while DEL does. + * href="https://valkey.io/commands/del/">DEL does. * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The list of keys to unlink. * @return Command Response - The number of keys that were unlinked. */ @@ -1709,7 +1709,7 @@ public T unlink(@NonNull ArgType[] keys) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param seconds The timeout in seconds. * @return Command response - true if the timeout was set. false if the @@ -1733,7 +1733,7 @@ public T expire(@NonNull ArgType key, long seconds) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param seconds The timeout in seconds. * @param expireOptions The expire options. @@ -1761,7 +1761,7 @@ public T expire( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param unixSeconds The timeout in an absolute Unix timestamp. * @return Command response - true if the timeout was set. false if the @@ -1786,7 +1786,7 @@ public T expireAt(@NonNull ArgType key, long unixSeconds) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param unixSeconds The timeout in an absolute Unix timestamp. * @param expireOptions The expire options. @@ -1815,7 +1815,7 @@ public T expireAt( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param milliseconds The timeout in milliseconds. * @return Command response - true if the timeout was set. false if the @@ -1840,7 +1840,7 @@ public T pexpire(@NonNull ArgType key, long milliseconds) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param milliseconds The timeout in milliseconds. * @param expireOptions The expire options. @@ -1869,7 +1869,7 @@ public T pexpire( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param unixMilliseconds The timeout in an absolute Unix timestamp. * @return Command response - true if the timeout was set. false if the @@ -1894,7 +1894,7 @@ public T pexpireAt(@NonNull ArgType key, long unixMilliseconds) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to set timeout on it. * @param unixMilliseconds The timeout in an absolute Unix timestamp. * @param expireOptions The expiration option. @@ -1917,7 +1917,7 @@ public T pexpireAt( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to return its timeout. * @return Command response - TTL in seconds, -2 if key does not exist, * or -1 if key exists but has no associated expire. @@ -1936,7 +1936,7 @@ public T ttl(@NonNull ArgType key) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to determine the expiration value of. * @return Command response - The expiration Unix timestamp in seconds, -2 if * key does not exist, or -1 if key exists but has no @@ -1955,7 +1955,7 @@ public T expiretime(@NonNull ArgType key) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to determine the expiration value of. * @return Command response - The expiration Unix timestamp in milliseconds, -2 if * key @@ -1971,7 +1971,7 @@ public T pexpiretime(@NonNull ArgType key) { /** * Gets the current connection id. * - * @see redis.io for details. + * @see valkey.io for details. * @return Command response - The id of the client. */ public T clientId() { @@ -1982,7 +1982,7 @@ public T clientId() { /** * Gets the name of the current connection. * - * @see redis.io for details. + * @see valkey.io for details. * @return Command response - The name of the client connection as a string if a name is set, or * null if no name is assigned. */ @@ -1994,7 +1994,7 @@ public T clientGetName() { /** * Rewrites the configuration file with the current configuration. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK is returned when the configuration was rewritten properly. Otherwise, * the transaction fails with an error. */ @@ -2005,10 +2005,10 @@ public T configRewrite() { /** * Resets the statistics reported by Redis using the INFO and LATENCY HISTOGRAM commands. + * href="https://valkey.io/commands/info/">INFO and LATENCY HISTOGRAM commands. * - * @see redis.io for details. + * @see valkey.io for details. * @return OK to confirm that the statistics were successfully reset. */ public T configResetStat() { @@ -2022,7 +2022,7 @@ public T configResetStat() { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @param options The ZAdd options. @@ -2053,7 +2053,7 @@ public T zadd( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @param options The ZAdd options. @@ -2072,7 +2072,7 @@ public T zadd( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @param changed Modify the return value from the number of new elements added, to the total @@ -2091,7 +2091,7 @@ public T zadd( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersScoresMap A Map of members to their corresponding scores. * @return Command Response - The number of elements added to the sorted set. @@ -2111,7 +2111,7 @@ public T zadd(@NonNull ArgType key, @NonNull Map memb * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member A member in the sorted set to increment. * @param increment The score to increment the member. @@ -2148,7 +2148,7 @@ public T zaddIncr( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member A member in the sorted set to increment. * @param increment The score to increment the member. @@ -2164,7 +2164,7 @@ public T zaddIncr(@NonNull ArgType key, @NonNull ArgType member, doubl * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param members An array of members to remove from the sorted set. * @return Command Response - The number of members that were removed from the sorted set, not @@ -2183,7 +2183,7 @@ public T zrem(@NonNull ArgType key, @NonNull ArgType[] members) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return Command Response - The number of elements in the sorted set.
                                      * If key does not exist, it is treated as an empty sorted set, and this command @@ -2201,7 +2201,7 @@ public T zcard(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count Specifies the quantity of members to pop.
                                      * If count is higher than the sorted set's cardinality, returns all members and @@ -2223,7 +2223,7 @@ public T zpopmin(@NonNull ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return Command Response - A map containing the removed member and its corresponding score.
                                      * If key doesn't exist, it will be treated as an empty sorted set and the @@ -2240,7 +2240,7 @@ public T zpopmin(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return Command Response - A String representing a random element from the sorted * set.
                                      @@ -2257,7 +2257,7 @@ public T zrandmember(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count The number of elements to return.
                                      * If count is positive, returns unique elements.
                                      @@ -2279,7 +2279,7 @@ public T zrandmemberWithCount(@NonNull ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count The number of elements to return.
                                      * If count is positive, returns unique elements.
                                      @@ -2306,7 +2306,7 @@ public T zrandmemberWithCountWithScores(ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param increment The score increment. * @param member A member of the sorted set. @@ -2327,7 +2327,7 @@ public T zincrby(@NonNull ArgType key, double increment, @NonNull ArgT * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @apiNote BZPOPMIN is a client blocking command, see Blocking * Commands for more details and best practices. @@ -2352,7 +2352,7 @@ public T bzpopmin(@NonNull ArgType[] keys, double timeout) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param count Specifies the quantity of members to pop.
                                      * If count is higher than the sorted set's cardinality, returns all members and @@ -2374,7 +2374,7 @@ public T zpopmax(@NonNull ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @return Command Response - A map containing the removed member and its corresponding score.
                                      * If key doesn't exist, it will be treated as an empty sorted set and the @@ -2394,7 +2394,7 @@ public T zpopmax(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @apiNote BZPOPMAX is a client blocking command, see Blocking * Commands for more details and best practices. @@ -2418,7 +2418,7 @@ public T bzpopmax(@NonNull ArgType[] keys, double timeout) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose score is to be retrieved. * @return Command Response - The score of the member.
                                      @@ -2438,7 +2438,7 @@ public T zscore(@NonNull ArgType key, @NonNull ArgType member) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return The rank of member in the sorted set.
                                      @@ -2457,7 +2457,7 @@ public T zrank(@NonNull ArgType key, @NonNull ArgType member) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return An array containing the rank (as Long) and score (as Double) @@ -2479,7 +2479,7 @@ public T zrankWithScore(@NonNull ArgType key, @NonNull ArgType member) * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return Command Response - The rank of member in the sorted set, where ranks are @@ -2499,7 +2499,7 @@ public T zrevrank(@NonNull ArgType key, @NonNull ArgType member) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param member The member whose rank is to be retrieved. * @return Command Response - An array containing the rank (as Long) and score (as @@ -2521,7 +2521,7 @@ public T zrevrankWithScore(@NonNull ArgType key, @NonNull ArgType memb * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param members An array of members in the sorted set. * @return Command Response - An Array of scores of the members.
                                      @@ -2541,7 +2541,7 @@ public T zmscore(@NonNull ArgType key, @NonNull ArgType[] members) { * @since Redis 6.2 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return Command Response - An array of elements representing the difference * between the sorted sets.
                                      @@ -2561,7 +2561,7 @@ public T zdiff(@NonNull ArgType[] keys) { * @since Redis 6.2 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return Command Response - A Map of elements and their scores representing the * difference between the sorted sets.
                                      @@ -2584,7 +2584,7 @@ public T zdiffWithScores(@NonNull ArgType[] keys) { * @since Redis 6.2 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the resulting sorted set. * @param keys The keys of the sorted sets to compare. * @return Command Response - The number of members in the resulting sorted set stored at @@ -2603,7 +2603,7 @@ public T zdiffstore(@NonNull ArgType destination, @NonNull ArgType[] k * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minScore The minimum score to count from. Can be an implementation of {@link * InfScoreBound} representing positive/negative infinity, or {@link ScoreBoundary} @@ -2633,7 +2633,7 @@ public T zcount( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param start The starting point of the range. * @param end The end of the range. @@ -2658,7 +2658,7 @@ public T zremrangebyrank(@NonNull ArgType key, long start, long end) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the destination sorted set. * @param source The key of the source sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                                      @@ -2695,7 +2695,7 @@ public T zrangestore( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key for the destination sorted set. * @param source The key of the source sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                                      @@ -2719,7 +2719,7 @@ public T zrangestore( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minLex The minimum bound of the lexicographical range. Can be an implementation of * {@link InfLexBound} representing positive/negative infinity, or {@link LexBoundary} @@ -2747,7 +2747,7 @@ public T zremrangebylex( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minScore The minimum score to remove from. Can be an implementation of {@link * InfScoreBound} representing positive/negative infinity, or {@link ScoreBoundary} @@ -2776,7 +2776,7 @@ public T zremrangebyscore( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param minLex The minimum lex to count from. Can be an implementation of {@link InfLexBound} * representing positive/negative infinity, or {@link LexBoundary} representing a specific lex @@ -2805,7 +2805,7 @@ public T zlexcount( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                        @@ -2841,7 +2841,7 @@ public T zunionstore( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                          @@ -2868,7 +2868,7 @@ public T zunionstore( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                            @@ -2903,7 +2903,7 @@ public T zinterstore( * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets to intersect. * @return Command Response - The cardinality of the intersection of the given sorted sets. */ @@ -2922,7 +2922,7 @@ public T zintercard(@NonNull ArgType[] keys) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets to intersect. * @param limit Specifies a maximum number for the intersection cardinality. If limit is set to * 0 the range will be unlimited. @@ -2945,7 +2945,7 @@ public T zintercard(@NonNull ArgType[] keys, long limit) { * To perform a zinterstore operation while specifying aggregation settings, use * {@link #zinterstore(String, KeysOrWeightedKeys, Aggregate)} * - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                              @@ -2971,7 +2971,7 @@ public T zinterstore( * To perform a zinterstore operation while specifying aggregation settings, use * {@link #zinterstore(String, KeysOrWeightedKeys, Aggregate)} * - * @see redis.io for more details. + * @see valkey.io for more details. * @param destination The key of the destination sorted set. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                @@ -2995,7 +2995,7 @@ public T zinterstore( * To get the elements with their scores, see {@link #zunionWithScores}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return Command Response - The resulting sorted set from the union. */ @@ -3009,7 +3009,7 @@ public T zunion(@NonNull KeyArray keys) { * To get the elements with their scores, see {@link #zunionWithScores}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return Command Response - The resulting sorted set from the union. */ @@ -3023,7 +3023,7 @@ public T zunion(@NonNull KeyArrayBinary keys) { * keysOrWeightedKeys. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                  *
                                                • Use {@link KeyArray} for keys only. @@ -3051,7 +3051,7 @@ public T zunionWithScores( * keysOrWeightedKeys. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                    *
                                                  • Use {@link KeyArrayBinary} for keys only. @@ -3081,7 +3081,7 @@ public T zunionWithScores( * #zunionWithScores(KeysOrWeightedKeys, Aggregate)}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                      *
                                                    • Use {@link KeyArray} for keys only. @@ -3104,7 +3104,7 @@ public T zunionWithScores(@NonNull KeysOrWeightedKeys keysOrWeightedKeys) { * #zunionWithScores(KeysOrWeightedKeys, Aggregate)}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                        *
                                                      • Use {@link KeyArrayBinary} for keys only. @@ -3126,7 +3126,7 @@ public T zunionWithScores(@NonNull KeysOrWeightedKeysBinary keysOrWeightedKeys) * To get the elements with their scores, see {@link #zinterWithScores}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return Command Response - The resulting sorted set from the intersection. */ @@ -3141,7 +3141,7 @@ public T zinter(@NonNull KeyArray keys) { * To get the elements with their scores, see {@link #zinterWithScores}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @return Command Response - The resulting sorted set from the intersection. */ @@ -3156,7 +3156,7 @@ public T zinter(@NonNull KeyArrayBinary keys) { * aggregation settings, use {@link #zinterWithScores(KeysOrWeightedKeys, Aggregate)}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                          *
                                                        • Use {@link KeyArray} for keys only. @@ -3178,7 +3178,7 @@ public T zinterWithScores(@NonNull KeysOrWeightedKeys keysOrWeightedKeys) { * aggregation settings, use {@link #zinterWithScores(KeysOrWeightedKeys, Aggregate)}. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                            *
                                                          • Use {@link KeyArrayBinary} for keys only. @@ -3199,7 +3199,7 @@ public T zinterWithScores(@NonNull KeysOrWeightedKeysBinary keysOrWeightedKeys) * keysOrWeightedKeys. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                              *
                                                            • Use {@link KeyArray} for keys only. @@ -3227,7 +3227,7 @@ public T zinterWithScores( * keysOrWeightedKeys. * * @since Redis 6.2 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keysOrWeightedKeys The keys of the sorted sets with possible formats: *
                                                                *
                                                              • Use {@link KeyArrayBinary} for keys only. @@ -4059,7 +4059,7 @@ public T xclaimJustId( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to return its timeout. * @return Command Response - TTL in milliseconds. -2 if key does not * exist, -1 if key exists but has no associated expire. @@ -4077,7 +4077,7 @@ public T pttl(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to remove the existing timeout on. * @return Command Response - false if key does not exist or does not * have an associated timeout, true if the timeout has been removed. @@ -4091,7 +4091,7 @@ public T persist(@NonNull ArgType key) { /** * Returns the server time. * - * @see redis.io for details. + * @see valkey.io for details. * @return Command Response - The current server time as a String array with two * elements: A UNIX TIME and the amount of microseconds already elapsed in the * current second. The returned array is in a [UNIX TIME, Microseconds already elapsed] @@ -4106,7 +4106,7 @@ public T time() { * Returns UNIX TIME of the last DB save timestamp or startup timestamp if no save * was made since then. * - * @see redis.io for details. + * @see valkey.io for details. * @return Command Response - UNIX TIME of the last DB save executed with success. */ public T lastsave() { @@ -4165,7 +4165,7 @@ public T flushdb(FlushMode mode) { /** * Displays a piece of generative computer art and the Redis version. * - * @see redis.io for details. + * @see valkey.io for details. * @return Command Response - A piece of generative computer art along with the current Redis * version. */ @@ -4177,7 +4177,7 @@ public T lolwut() { /** * Displays a piece of generative computer art and the Redis version. * - * @see redis.io for details. + * @see valkey.io for details. * @param parameters Additional set of arguments in order to change the output: *
                                                                  *
                                                                • On Redis version 5, those are length of the line, number of squares per @@ -4198,7 +4198,7 @@ public T lolwut(int @NonNull [] parameters) { * Displays a piece of generative computer art and the Redis version. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @return Command Response - A piece of generative computer art along with the current Redis * version. @@ -4213,7 +4213,7 @@ public T lolwut(int version) { * Displays a piece of generative computer art and the Redis version. * * @apiNote Versions 5 and 6 produce graphical things. - * @see redis.io for details. + * @see valkey.io for details. * @param version Version of computer art to generate. * @param parameters Additional set of arguments in order to change the output: *
                                                                    @@ -4247,7 +4247,7 @@ public T dbsize() { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see valkey.io for details. * @param key The key to check its data type. * @return Command Response - If the key exists, the type of the stored value is * returned. Otherwise, a "none" string is returned. @@ -4261,7 +4261,7 @@ public T type(@NonNull ArgType key) { /** * Returns a random key from the currently selected database. * * - * @see redis.io for details. + * @see valkey.io for details. * @return Command Response - A random key from the database. */ public T randomKey() { @@ -4275,7 +4275,7 @@ public T randomKey() { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to rename. * @param newKey The new name of the key. * @return Command Response - If the key was successfully renamed, return "OK" @@ -4292,7 +4292,7 @@ public T rename(@NonNull ArgType key, @NonNull ArgType newKey) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key to rename. * @param newKey The new key name. * @return Command Response - true if key was renamed to newKey @@ -4310,7 +4310,7 @@ public T renamenx(@NonNull ArgType key, @NonNull ArgType newKey) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param position The relative position to insert into - either {@link InsertPosition#BEFORE} or * {@link InsertPosition#AFTER} the pivot. @@ -4338,7 +4338,7 @@ public T linsert( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @apiNote BRPOP is a client blocking command, see Blocking * Commands for more details and best practices. @@ -4364,7 +4364,7 @@ public T brpop(@NonNull ArgType[] keys, double timeout) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the head of the list stored at key. * @return Command Response - The length of the list after the push operation. @@ -4382,7 +4382,7 @@ public T lpushx(@NonNull ArgType key, @NonNull ArgType[] elements) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the list. * @param elements The elements to insert at the tail of the list stored at key. * @return Command Response - The length of the list after the push operation. @@ -4400,7 +4400,7 @@ public T rpushx(@NonNull ArgType key, @NonNull ArgType[] elements) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @apiNote BLPOP is a client blocking command, see Blocking * Commands for more details and best practices. @@ -4427,7 +4427,7 @@ public T blpop(@NonNull ArgType[] keys, double timeout) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                                                                    *
                                                                      @@ -4461,7 +4461,7 @@ public T zrange(@NonNull ArgType key, @NonNull RangeQuery rangeQuery, * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                                                                      *
                                                                        @@ -4484,7 +4484,7 @@ public T zrange(@NonNull ArgType key, @NonNull RangeQuery rangeQuery) * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                                                                        *
                                                                          @@ -4516,7 +4516,7 @@ public T zrangeWithScores( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param rangeQuery The range query object representing the type of range query to perform.
                                                                          *
                                                                            @@ -4539,7 +4539,7 @@ public T zrangeWithScores(@NonNull ArgType key, @NonNull ScoredRangeQu * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param modifier The element pop criteria - either {@link ScoreFilter#MIN} or {@link * ScoreFilter#MAX} to pop the member with the lowest/highest score accordingly. @@ -4562,7 +4562,7 @@ public T zmpop(@NonNull ArgType[] keys, @NonNull ScoreFilter modifier) * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException * @since Redis 7.0 and above. - * @see redis.io for more details. + * @see valkey.io for more details. * @param keys The keys of the sorted sets. * @param modifier The element pop criteria - either {@link ScoreFilter#MIN} or {@link * ScoreFilter#MAX} to pop members with the lowest/highest scores accordingly. @@ -4594,7 +4594,7 @@ public T zmpop(@NonNull ArgType[] keys, @NonNull ScoreFilter modifier, * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @apiNote BZMPOP is a client blocking command, see Blocking * Commands for more details and best practices. @@ -4626,7 +4626,7 @@ public T bzmpop( * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @apiNote BZMPOP is a client blocking command, see Blocking * Commands for more details and best practices. @@ -4668,7 +4668,7 @@ public T bzmpop( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the HyperLogLog data structure to add elements into. * @param elements An array of members to add to the HyperLogLog stored at key. * @return Command Response - If the HyperLogLog is newly created, or if the HyperLogLog @@ -4687,7 +4687,7 @@ public T pfadd(@NonNull ArgType key, @NonNull ArgType[] elements) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys of the HyperLogLog data structures to be analyzed. * @return Command Response - The approximated cardinality of given HyperLogLog data structures. *
                                                                            @@ -4706,7 +4706,7 @@ public T pfcount(@NonNull ArgType[] keys) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param destination The key of the destination HyperLogLog where the merged data sets will be * stored. * @param sourceKeys The keys of the HyperLogLog structures to be merged. @@ -4724,7 +4724,7 @@ public T pfmerge(@NonNull ArgType destination, @NonNull ArgType[] sour * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the object to get the internal encoding of. * @return Command response - If key exists, returns the internal encoding of the * object stored at key as a String. Otherwise, return null @@ -4741,7 +4741,7 @@ public T objectEncoding(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the object to get the logarithmic access frequency counter * of. * @return Command response - If key exists, returns the logarithmic access frequency @@ -4759,7 +4759,7 @@ public T objectFreq(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the object to get the idle time of. * @return Command response - If key exists, returns the idle time in seconds. * Otherwise, returns null. @@ -4775,7 +4775,7 @@ public T objectIdletime(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the object to get the reference count of. * @return Command response - If key exists, returns the reference count of the * object stored at key as a Long. Otherwise, returns null @@ -4792,7 +4792,7 @@ public T objectRefcount(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param keys The keys to update last access time. * @return Command Response - The number of keys that were updated. */ @@ -4810,7 +4810,7 @@ public T touch(@NonNull ArgType[] keys) { * @since Redis 6.2.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param source The key to the source value. * @param destination The key where the value should be copied to. * @param replace If the destination key should be removed before copying the value to it. @@ -4832,7 +4832,7 @@ public T copy(@NonNull ArgType source, @NonNull ArgType destination, b * @since Redis 6.2.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param source The key to the source value. * @param destination The key where the value should be copied to. * @return Command Response - true if source was copied, false @@ -4917,7 +4917,7 @@ public T bitcount( * .
                                                                            * If a member is already a part of the sorted set, its position is updated. * - * @see redis.io for more details. + * @see valkey.io for more details. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException * @param key The key of the sorted set. @@ -4953,7 +4953,7 @@ public T geoadd( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key of the sorted set. * @param membersToGeospatialData A mapping of member names to their corresponding positions - see * {@link GeospatialData}. The command will report an error when the user attempts to index @@ -5058,7 +5058,7 @@ public T geohash(@NonNull ArgType key, @NonNull ArgType[] members) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param libraryCode The source code that implements the library. * @param replace Whether the given library should overwrite a library with the same name if it * already exists. @@ -5075,7 +5075,7 @@ public T functionLoad(@NonNull ArgType libraryCode, boolean replace) { * Returns information about the functions and libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param withCode Specifies whether to request the library code from the server or not. * @return Command Response - Info about all libraries and their functions. */ @@ -5091,7 +5091,7 @@ public T functionList(boolean withCode) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param libNamePattern A wildcard pattern for matching library names. * @param withCode Specifies whether to request the library code from the server or not. * @return Command Response - Info about queried libraries and their functions. @@ -5114,7 +5114,7 @@ public T functionList(@NonNull ArgType libNamePattern, boolean withCod * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param keys An array of key arguments accessed by the function. To ensure the * correct execution of functions, both in standalone and clustered deployments, all names of @@ -5138,7 +5138,7 @@ public T fcall( * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param arguments An array of function arguments. arguments * should not represent names of keys. @@ -5154,7 +5154,7 @@ public T fcall(@NonNull ArgType function, @NonNull ArgType[] arguments * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param keys An array of key arguments accessed by the function. To ensure the * correct execution of functions, both in standalone and clustered deployments, all names of @@ -5179,7 +5179,7 @@ public T fcallReadOnly( * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param function The function name. * @param arguments An array of function arguments. arguments * should not represent names of keys. @@ -5194,7 +5194,7 @@ public T fcallReadOnly(@NonNull ArgType function, @NonNull ArgType[] a * available execution engines. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @return Command Response - A Map with two keys: *
                                                                              *
                                                                            • running_script with information about the running script. @@ -5588,7 +5588,7 @@ public T blmove( * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set member. * @return Command Response - A random element from the set, or null if key * does not exist. @@ -5604,7 +5604,7 @@ public T srandmember(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key from which to retrieve the set members. * @param count The number of elements to return.
                                                                              * If count is positive, returns unique elements.
                                                                              @@ -5624,7 +5624,7 @@ public T srandmember(@NonNull ArgType key, long count) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @return Command Response - The value of the popped member.
                                                                              * If key does not exist, null will be returned. @@ -5641,7 +5641,7 @@ public T spop(@NonNull ArgType key) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param key The key of the set. * @param count The count of the elements to pop from the set. * @return Command Response - A set of popped elements will be returned depending on the set's @@ -5716,7 +5716,7 @@ public T bitfieldReadOnly( * Deletes all function libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @return Command Response - OK. */ public T functionFlush() { @@ -5728,7 +5728,7 @@ public T functionFlush() { * Deletes all function libraries. * * @since Redis 7.0 and above. - * @see redis.io for details. + * @see valkey.io for details. * @param mode The flushing mode, could be either {@link FlushMode#SYNC} or {@link * FlushMode#ASYNC}. * @return Command Response - OK. @@ -5744,7 +5744,7 @@ public T functionFlush(@NonNull FlushMode mode) { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param libName The library name to delete. * @return Command Response - OK. */ @@ -5800,7 +5800,7 @@ public T lcsLen(@NonNull ArgType key1, @NonNull ArgType key2) { * * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param channel The channel to publish the message on. * @param message The message to publish. * @return Command response - The number of clients that received the message. diff --git a/java/client/src/main/java/glide/api/models/ClusterTransaction.java b/java/client/src/main/java/glide/api/models/ClusterTransaction.java index 9343460719..1c47ee58ce 100644 --- a/java/client/src/main/java/glide/api/models/ClusterTransaction.java +++ b/java/client/src/main/java/glide/api/models/ClusterTransaction.java @@ -39,7 +39,7 @@ protected ClusterTransaction getThis() { * @since Redis 7.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param channel The channel to publish the message on. * @param message The message to publish. * @return Command response - The number of clients that received the message. diff --git a/java/client/src/main/java/glide/api/models/Transaction.java b/java/client/src/main/java/glide/api/models/Transaction.java index cd02825ce7..40b3c54b2e 100644 --- a/java/client/src/main/java/glide/api/models/Transaction.java +++ b/java/client/src/main/java/glide/api/models/Transaction.java @@ -46,7 +46,7 @@ protected Transaction getThis() { /** * Changes the currently selected Redis database. * - * @see redis.io for details. + * @see valkey.io for details. * @param index The index of the database to select. * @return Command Response - A simple OK response. */ @@ -59,7 +59,7 @@ public Transaction select(long index) { * Move key from the currently selected database to the database specified by * dbIndex. * - * @see redis.io for more details. + * @see valkey.io for more details. * @param key The key to move. * @param dbIndex The index of the database to move key to. * @return Command Response - true if key was moved, or false @@ -80,7 +80,7 @@ public Transaction move(ArgType key, long dbIndex) { * @since Redis 6.2.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param source The key to the source value. * @param destination The key where the value should be copied to. * @param destinationDB The alternative logical database index for the destination key. @@ -100,7 +100,7 @@ public Transaction copy( * @since Redis 6.2.0 and above. * @implNote ArgType is limited to String or GlideString, any other type will throw * IllegalArgumentException - * @see redis.io for details. + * @see valkey.io for details. * @param source The key to the source value. * @param destination The key where the value should be copied to. * @param destinationDB The alternative logical database index for the destination key. diff --git a/java/client/src/main/java/glide/api/models/commands/ExpireOptions.java b/java/client/src/main/java/glide/api/models/commands/ExpireOptions.java index c62641a38c..fa2ba8942d 100644 --- a/java/client/src/main/java/glide/api/models/commands/ExpireOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/ExpireOptions.java @@ -9,7 +9,7 @@ * Optional arguments for {@link GenericBaseCommands#expire(String, long, ExpireOptions)}, and * similar commands. * - * @see redis.io + * @see valkey.io */ @RequiredArgsConstructor public enum ExpireOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/GetExOptions.java b/java/client/src/main/java/glide/api/models/commands/GetExOptions.java index 030819e5f2..a16dde7c52 100644 --- a/java/client/src/main/java/glide/api/models/commands/GetExOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/GetExOptions.java @@ -17,7 +17,7 @@ /** * Optional arguments to {@link StringBaseCommands#getex(String, GetExOptions)} command. * - * @see redis.io + * @see valkey.io */ public class GetExOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/InfoOptions.java b/java/client/src/main/java/glide/api/models/commands/InfoOptions.java index 40fd734e4b..c9c09c01a4 100644 --- a/java/client/src/main/java/glide/api/models/commands/InfoOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/InfoOptions.java @@ -9,7 +9,7 @@ /** * Optional arguments to {@link ServerManagementCommands#info(InfoOptions)} * - * @see redis.io + * @see valkey.io */ @Builder public final class InfoOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/LInsertOptions.java b/java/client/src/main/java/glide/api/models/commands/LInsertOptions.java index 6158b1044a..887153967c 100644 --- a/java/client/src/main/java/glide/api/models/commands/LInsertOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/LInsertOptions.java @@ -6,7 +6,7 @@ /** * Options for {@link ListBaseCommands#linsert}. * - * @see redis.io + * @see valkey.io */ public class LInsertOptions { /** Defines where to insert new elements into a list. */ diff --git a/java/client/src/main/java/glide/api/models/commands/LPosOptions.java b/java/client/src/main/java/glide/api/models/commands/LPosOptions.java index 2570538d8f..f2fd96bd70 100644 --- a/java/client/src/main/java/glide/api/models/commands/LPosOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/LPosOptions.java @@ -12,7 +12,7 @@ * Optional arguments to {@link ListBaseCommands#lpos(String, String, LPosOptions)} and {@link * ListBaseCommands#lposCount(String, String, long)} command. * - * @see redis.io + * @see valkey.io */ @Builder public final class LPosOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/RangeOptions.java b/java/client/src/main/java/glide/api/models/commands/RangeOptions.java index fc5a0a6426..227a6d2fc2 100644 --- a/java/client/src/main/java/glide/api/models/commands/RangeOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/RangeOptions.java @@ -16,13 +16,13 @@ * SortedSetBaseCommands#zrange}, {@link SortedSetBaseCommands#zrangestore}, {@link * SortedSetBaseCommands#zrangeWithScores}, and {@link SortedSetBaseCommands#zlexcount} * - * @see redis.io - * @see redis.io - * @see redis.io - * @see redis.io - * @see redis.io - * @see redis.io - * @see redis.io + * @see valkey.io + * @see valkey.io + * @see valkey.io + * @see valkey.io + * @see valkey.io + * @see valkey.io + * @see valkey.io */ public class RangeOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/ScriptOptions.java b/java/client/src/main/java/glide/api/models/commands/ScriptOptions.java index 308002723a..dbdba5a461 100644 --- a/java/client/src/main/java/glide/api/models/commands/ScriptOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/ScriptOptions.java @@ -11,7 +11,7 @@ /** * Optional arguments for {@link GenericBaseCommands#invokeScript(Script, ScriptOptions)} command. * - * @see redis.io + * @see valkey.io */ @Builder public final class ScriptOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/ScriptOptionsGlideString.java b/java/client/src/main/java/glide/api/models/commands/ScriptOptionsGlideString.java index 8def4f1d33..50535904f4 100644 --- a/java/client/src/main/java/glide/api/models/commands/ScriptOptionsGlideString.java +++ b/java/client/src/main/java/glide/api/models/commands/ScriptOptionsGlideString.java @@ -13,7 +13,7 @@ * Optional arguments for {@link GenericBaseCommands#invokeScript(Script, ScriptOptionsGlideString)} * command. * - * @see redis.io + * @see valkey.io */ @Builder public class ScriptOptionsGlideString { diff --git a/java/client/src/main/java/glide/api/models/commands/SetOptions.java b/java/client/src/main/java/glide/api/models/commands/SetOptions.java index 718626705d..345e3c7137 100644 --- a/java/client/src/main/java/glide/api/models/commands/SetOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/SetOptions.java @@ -20,7 +20,7 @@ /** * Optional arguments for {@link StringBaseCommands#set(String, String, SetOptions)} command. * - * @see redis.io + * @see valkey.io */ @Builder public final class SetOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/SortBaseOptions.java b/java/client/src/main/java/glide/api/models/commands/SortBaseOptions.java index 063b117678..41c668c543 100644 --- a/java/client/src/main/java/glide/api/models/commands/SortBaseOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/SortBaseOptions.java @@ -11,8 +11,8 @@ /** * Optional arguments to sort, sortReadOnly, and sortStore commands * - * @see redis.io and redis.io + * @see valkey.io and valkey.io */ @SuperBuilder public abstract class SortBaseOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/SortOptions.java b/java/client/src/main/java/glide/api/models/commands/SortOptions.java index 74edad9908..58c6bb07fb 100644 --- a/java/client/src/main/java/glide/api/models/commands/SortOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/SortOptions.java @@ -12,8 +12,8 @@ * GenericCommands#sortReadOnly(String, SortOptions)}, and {@link GenericCommands#sortStore(String, * String, SortOptions)} * - * @see redis.io and redis.io + * @see valkey.io and valkey.io */ @SuperBuilder public class SortOptions extends SortBaseOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/SortOptionsBinary.java b/java/client/src/main/java/glide/api/models/commands/SortOptionsBinary.java index 4bd41d692e..4ccac7df3e 100644 --- a/java/client/src/main/java/glide/api/models/commands/SortOptionsBinary.java +++ b/java/client/src/main/java/glide/api/models/commands/SortOptionsBinary.java @@ -16,8 +16,8 @@ * GenericCommands#sortReadOnly(GlideString, SortOptionsBinary)}, and {@link * GenericCommands#sortStore(GlideString, String, SortOptionsBinary)} * - * @see redis.io and redis.io + * @see valkey.io and valkey.io */ @SuperBuilder public class SortOptionsBinary extends SortBaseOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/WeightAggregateOptions.java b/java/client/src/main/java/glide/api/models/commands/WeightAggregateOptions.java index 55334201fe..4209ed4e9e 100644 --- a/java/client/src/main/java/glide/api/models/commands/WeightAggregateOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/WeightAggregateOptions.java @@ -16,10 +16,10 @@ * SortedSetBaseCommands#zinterWithScores}, {@link SortedSetBaseCommands#zunionstore}, and {@link * SortedSetBaseCommands#zinterstore}. * - * @see redis.io for more details. - * @see redis.io for more details. - * @see redis.io for more details. - * @see redis.io for more details. + * @see valkey.io for more details. + * @see valkey.io for more details. + * @see valkey.io for more details. + * @see valkey.io for more details. */ public abstract class WeightAggregateOptions { public static final String WEIGHTS_REDIS_API = "WEIGHTS"; diff --git a/java/client/src/main/java/glide/api/models/commands/ZAddOptions.java b/java/client/src/main/java/glide/api/models/commands/ZAddOptions.java index 1991f754c4..74b314ffd9 100644 --- a/java/client/src/main/java/glide/api/models/commands/ZAddOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/ZAddOptions.java @@ -13,7 +13,7 @@ * {@link SortedSetBaseCommands#zadd(String, Map, ZAddOptions)} and {@link * SortedSetBaseCommands#zaddIncr(String, String, double, ZAddOptions)} * - * @see redis.io + * @see valkey.io */ @Builder public final class ZAddOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/bitmap/BitFieldOptions.java b/java/client/src/main/java/glide/api/models/commands/bitmap/BitFieldOptions.java index edac94e4d3..1a465150c3 100644 --- a/java/client/src/main/java/glide/api/models/commands/bitmap/BitFieldOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/bitmap/BitFieldOptions.java @@ -14,8 +14,8 @@ * {@link BitmapBaseCommands#bitfieldReadOnly(String, BitFieldReadOnlySubCommands[])}. Specifies * subcommands, bit-encoding type, and offset type. * - * @see redis.io and redis.io + * @see valkey.io and valkey.io */ public class BitFieldOptions { /** GET subcommand string to include in the BITFIELD command. */ diff --git a/java/client/src/main/java/glide/api/models/commands/bitmap/BitmapIndexType.java b/java/client/src/main/java/glide/api/models/commands/bitmap/BitmapIndexType.java index 21dfc4127a..5ff1c5c330 100644 --- a/java/client/src/main/java/glide/api/models/commands/bitmap/BitmapIndexType.java +++ b/java/client/src/main/java/glide/api/models/commands/bitmap/BitmapIndexType.java @@ -7,7 +7,7 @@ * Optional arguments for {@link BitmapBaseCommands#bitcount(String, long, long, BitmapIndexType)}. * Specifies if start and end arguments are BYTE indices or BIT indices * - * @see redis.io + * @see valkey.io */ public enum BitmapIndexType { /** Specifies a byte index * */ diff --git a/java/client/src/main/java/glide/api/models/commands/bitmap/BitwiseOperation.java b/java/client/src/main/java/glide/api/models/commands/bitmap/BitwiseOperation.java index 929a3a6c56..88ad339f14 100644 --- a/java/client/src/main/java/glide/api/models/commands/bitmap/BitwiseOperation.java +++ b/java/client/src/main/java/glide/api/models/commands/bitmap/BitwiseOperation.java @@ -7,7 +7,7 @@ * Defines bitwise operation for {@link BitmapBaseCommands#bitop(BitwiseOperation, String, * String[])}. Specifies bitwise operation to perform between keys. * - * @see redis.io + * @see valkey.io */ public enum BitwiseOperation { AND, diff --git a/java/client/src/main/java/glide/api/models/commands/function/FunctionListOptions.java b/java/client/src/main/java/glide/api/models/commands/function/FunctionListOptions.java index 07914eaa8d..3ca8162372 100644 --- a/java/client/src/main/java/glide/api/models/commands/function/FunctionListOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/function/FunctionListOptions.java @@ -8,7 +8,7 @@ * Option for {@link ScriptingAndFunctionsCommands#functionList()} and {@link * ScriptingAndFunctionsClusterCommands#functionList()} command. * - * @see redis.io + * @see valkey.io */ public class FunctionListOptions { /** Causes the server to include the libraries source implementation in the reply. */ diff --git a/java/client/src/main/java/glide/api/models/commands/function/FunctionLoadOptions.java b/java/client/src/main/java/glide/api/models/commands/function/FunctionLoadOptions.java index 0897e7fe8d..c05482410f 100644 --- a/java/client/src/main/java/glide/api/models/commands/function/FunctionLoadOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/function/FunctionLoadOptions.java @@ -4,7 +4,7 @@ /** * Option for FUNCTION LOAD command. * - * @see redis.io + * @see valkey.io */ public enum FunctionLoadOptions { /** Changes command behavior to overwrite the existing library with the new contents. */ diff --git a/java/client/src/main/java/glide/api/models/commands/function/FunctionRestorePolicy.java b/java/client/src/main/java/glide/api/models/commands/function/FunctionRestorePolicy.java index 3c4aeb23f8..886c1ee1da 100644 --- a/java/client/src/main/java/glide/api/models/commands/function/FunctionRestorePolicy.java +++ b/java/client/src/main/java/glide/api/models/commands/function/FunctionRestorePolicy.java @@ -11,7 +11,7 @@ * ScriptingAndFunctionsClusterCommands#functionRestore(byte[], FunctionRestorePolicy)}, and {@link * ScriptingAndFunctionsClusterCommands#functionRestore(byte[], FunctionRestorePolicy, Route)}. * - * @see redis.io for details. + * @see valkey.io for details. */ public enum FunctionRestorePolicy { /** diff --git a/java/client/src/main/java/glide/api/models/commands/geospatial/GeoAddOptions.java b/java/client/src/main/java/glide/api/models/commands/geospatial/GeoAddOptions.java index 9fc2dc46ae..e71b71f6ef 100644 --- a/java/client/src/main/java/glide/api/models/commands/geospatial/GeoAddOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/geospatial/GeoAddOptions.java @@ -12,7 +12,7 @@ * Optional arguments for {@link GeospatialIndicesBaseCommands#geoadd(String, Map, GeoAddOptions)} * command. * - * @see redis.io + * @see valkey.io */ @Getter public final class GeoAddOptions { diff --git a/java/client/src/main/java/glide/api/models/commands/geospatial/GeoSearchShape.java b/java/client/src/main/java/glide/api/models/commands/geospatial/GeoSearchShape.java index 3d7f454404..3add2dadd9 100644 --- a/java/client/src/main/java/glide/api/models/commands/geospatial/GeoSearchShape.java +++ b/java/client/src/main/java/glide/api/models/commands/geospatial/GeoSearchShape.java @@ -7,7 +7,7 @@ /** * The query's shape for {@link GeospatialIndicesBaseCommands} command. * - * @see valkey.io + * @see valkey.io */ @Getter public final class GeoSearchShape { diff --git a/java/client/src/main/java/glide/api/models/commands/stream/StreamReadGroupOptions.java b/java/client/src/main/java/glide/api/models/commands/stream/StreamReadGroupOptions.java index f23f38b3bc..ecb41a2c0e 100644 --- a/java/client/src/main/java/glide/api/models/commands/stream/StreamReadGroupOptions.java +++ b/java/client/src/main/java/glide/api/models/commands/stream/StreamReadGroupOptions.java @@ -14,7 +14,7 @@ * Optional arguments for {@link StreamBaseCommands#xreadgroup(Map, String, String, * StreamReadGroupOptions)} * - * @see redis.io + * @see valkey.io */ @SuperBuilder public final class StreamReadGroupOptions extends StreamReadOptions { diff --git a/java/client/src/main/java/glide/api/models/configuration/ClusterSubscriptionConfiguration.java b/java/client/src/main/java/glide/api/models/configuration/ClusterSubscriptionConfiguration.java index 8a0b031a06..72293b9956 100644 --- a/java/client/src/main/java/glide/api/models/configuration/ClusterSubscriptionConfiguration.java +++ b/java/client/src/main/java/glide/api/models/configuration/ClusterSubscriptionConfiguration.java @@ -35,7 +35,7 @@ public final class ClusterSubscriptionConfiguration extends BaseSubscriptionConf /** * Describes subscription modes for cluster client. * - * @see redis.io for details. + * @see valkey.io for details. */ public enum PubSubClusterChannelMode implements ChannelMode { /** Use exact channel names. */ diff --git a/java/client/src/main/java/glide/api/models/configuration/StandaloneSubscriptionConfiguration.java b/java/client/src/main/java/glide/api/models/configuration/StandaloneSubscriptionConfiguration.java index 7e8070356b..c3bd24c4ce 100644 --- a/java/client/src/main/java/glide/api/models/configuration/StandaloneSubscriptionConfiguration.java +++ b/java/client/src/main/java/glide/api/models/configuration/StandaloneSubscriptionConfiguration.java @@ -34,7 +34,7 @@ public final class StandaloneSubscriptionConfiguration extends BaseSubscriptionC /** * Describes subscription modes for standalone client. * - * @see redis.io for details. + * @see valkey.io for details. */ public enum PubSubChannelMode implements ChannelMode { /** Use exact channel names. */