What's new in Valkey 9.0? Discover new features and improvements. Read the announcement.

ECHO

Returns the given string.

Usage
ECHO message
Complexity
O(1)
Since
1.0.0
ACL Categories
@connection, @fast
Command flags
LOADING, STALE, FAST

Returns message.

Examples

127.0.0.1:6379> ECHO "Hello World!"
"Hello World!"

Replies

RESP2

Bulk string reply: the given string.

RESP3

Bulk string reply: the given string.