Skip to content

Commit

Permalink
Java: replace all commands links to valkey (valkey-io#1763)
Browse files Browse the repository at this point in the history
  • Loading branch information
shohamazon authored Jul 3, 2024
1 parent dcea082 commit 1d8d6c8
Show file tree
Hide file tree
Showing 51 changed files with 656 additions and 665 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Supports commands and transactions for the "Bitmap Commands" group for standalone and cluster
* clients.
*
* @see <a href="https://redis.io/docs/latest/commands/?group=bitmap">Bitmap Commands</a>
* @see <a href="https://redis.io/commands/?group=bitmap">Bitmap Commands</a>
*/
public interface BitmapBaseCommands {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public interface ConnectionManagementClusterCommands {
* Pings the Redis server.<br>
* The command will be routed to all primary nodes.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @return <code>String</code> with <code>"PONG"</code>.
* @example
* <pre>{@code
Expand All @@ -31,7 +31,7 @@ public interface ConnectionManagementClusterCommands {
* Pings the Redis server.<br>
* The command will be routed to all primary nodes.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @param message The server will respond with a copy of the message.
* @return <code>String</code> with a copy of the argument <code>message</code>.
* @example
Expand All @@ -46,7 +46,7 @@ public interface ConnectionManagementClusterCommands {
* Pings the Redis server.<br>
* The command will be routed to all primary nodes.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @param message The server will respond with a copy of the message.
* @return <code>GlideString</code> with a copy of the argument <code>message</code>.
* @example
Expand All @@ -60,7 +60,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Pings the Redis server.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @param route Specifies the routing configuration for the command. The client will route the
* command to the nodes defined by <code>route</code>.
* @return <code>String</code> with <code>"PONG"</code>.
Expand All @@ -75,7 +75,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Pings the Redis server.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> 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 <code>route</code>.
Expand All @@ -91,7 +91,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Pings the Redis server.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> 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 <code>route</code>.
Expand All @@ -108,7 +108,7 @@ public interface ConnectionManagementClusterCommands {
* Gets the current connection id.<br>
* The command will be routed to a random node.
*
* @see <a href="https://redis.io/commands/client-id/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/client-id/">valkey.io</a> for details.
* @return The id of the client.
* @example
* <pre>{@code
Expand All @@ -121,7 +121,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Gets the current connection id.
*
* @see <a href="https://redis.io/commands/client-id/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/client-id/">valkey.io</a> for details.
* @param route Specifies the routing configuration for the command. The client will route the
* command to the nodes defined by <code>route</code>.
* @return A {@link ClusterValue} which holds a single value if single node route is used or a
Expand All @@ -142,7 +142,7 @@ public interface ConnectionManagementClusterCommands {
* Gets the name of the current connection.<br>
* The command will be routed a random node.
*
* @see <a href="https://redis.io/commands/client-getname/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/client-getname/">valkey.io</a> for details.
* @return The name of the client connection as a string if a name is set, or <code>null</code> if
* no name is assigned.
* @example
Expand All @@ -156,7 +156,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Gets the name of the current connection.
*
* @see <a href="https://redis.io/commands/client-getname/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/client-getname/">valkey.io</a> for details.
* @param route Specifies the routing configuration for the command. The client will route the
* command to the nodes defined by <code>route</code>.
* @return A {@link ClusterValue} which holds a single value if single node route is used or a
Expand All @@ -178,7 +178,7 @@ public interface ConnectionManagementClusterCommands {
* Echoes the provided <code>message</code> back.<br>
* The command will be routed a random node.
*
* @see <a href="https://redis.io/commands/echo/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/echo/">valkey.io</a> for details.
* @param message The message to be echoed back.
* @return The provided <code>message</code>.
* @example
Expand All @@ -193,7 +193,7 @@ public interface ConnectionManagementClusterCommands {
* Echoes the provided <code>message</code> back.<br>
* The command will be routed a random node.
*
* @see <a href="https://redis.io/commands/echo/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/echo/">valkey.io</a> for details.
* @param message The message to be echoed back.
* @return The provided <code>message</code>.
* @example
Expand All @@ -207,7 +207,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Echoes the provided <code>message</code> back.
*
* @see <a href="https://redis.io/commands/echo/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/echo/">valkey.io</a> 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 <code>route</code>.
Expand All @@ -230,7 +230,7 @@ public interface ConnectionManagementClusterCommands {
/**
* Echoes the provided <code>message</code> back.
*
* @see <a href="https://redis.io/commands/echo/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/echo/">valkey.io</a> 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 <code>route</code>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public interface ConnectionManagementCommands {
/**
* Pings the Redis server.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @return <code>String</code> with <code>"PONG"</code>.
* @example
* <pre>{@code
Expand All @@ -27,7 +27,7 @@ public interface ConnectionManagementCommands {
/**
* Pings the Redis server.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @param message The server will respond with a copy of the message.
* @return <code>String</code> with a copy of the argument <code>message</code>.
* @example
Expand All @@ -41,7 +41,7 @@ public interface ConnectionManagementCommands {
/**
* Pings the Redis server.
*
* @see <a href="https://redis.io/commands/ping/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/ping/">valkey.io</a> for details.
* @param message The server will respond with a copy of the message.
* @return <code>GlideString</code> with a copy of the argument <code>message</code>.
* @example
Expand All @@ -55,7 +55,7 @@ public interface ConnectionManagementCommands {
/**
* Gets the current connection id.
*
* @see <a href="https://redis.io/commands/client-id/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/client-id/">valkey.io</a> for details.
* @return The id of the client.
* @example
* <pre>{@code
Expand All @@ -68,7 +68,7 @@ public interface ConnectionManagementCommands {
/**
* Gets the name of the current connection.
*
* @see <a href="https://redis.io/commands/client-getname/">redis.io</a> for details.
* @see <a href="https://valkey.io/commands/client-getname/">valkey.io</a> for details.
* @return The name of the client connection as a string if a name is set, or <code>null</code> if
* no name is assigned.
* @example
Expand All @@ -82,7 +82,7 @@ public interface ConnectionManagementCommands {
/**
* Echoes the provided <code>message</code> back.
*
* @see <a href="https://redis.io/commands/echo/>redis.io</a> for details.
* @see <a href="https://valkey.io/commands/echo/>valkey.io</a> for details.
* @param message The message to be echoed back.
* @return The provided <code>message</code>.
* @example
Expand All @@ -96,7 +96,7 @@ public interface ConnectionManagementCommands {
/**
* Echoes the provided <code>message</code> back.
*
* @see <a href="https://redis.io/commands/echo/>redis.io</a> for details.
* @see <a href="https://valkey.io/commands/echo/>valkey.io</a> for details.
* @param message The message to be echoed back.
* @return The provided <code>message</code>.
* @example
Expand Down
Loading

0 comments on commit 1d8d6c8

Please sign in to comment.