mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
17 lines
420 B
Go
17 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
|
|
}
|