18 lines
420 B
Go
18 lines
420 B
Go
|
package goredis
|
||
|
|
||
|
// Echo command returns message.
|
||
|
func (r *Redis) Echo(message string) (string, error) {
|
||
|
rp, err := r.ExecuteCommand("ECHO", message)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
return rp.StringValue()
|
||
|
}
|
||
|
|
||
|
// Ping command returns PONG.
|
||
|
// This command is often used to test if a connection is still alive, or to measure latency.
|
||
|
func (r *Redis) Ping() error {
|
||
|
_, err := r.ExecuteCommand("PING")
|
||
|
return err
|
||
|
}
|