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