Latest web development tutorials

Redis Echo command

Redis connection

Redis Echo command prints the given string is used.

grammar

redis Echo basic command syntax is as follows:

redis 127.0.0.1:6379> ECHO message

Available versions

> = 1.0.0

return value

Returns the string itself.

Examples

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

Redis connection