Beispiel #1
0
 /// <summary>
 /// Ping the Sentinel server
 /// </summary>
 /// <returns>Status code</returns>
 public Task <string> PingAsync()
 {
     return(WriteAsync(RedisCommands.Ping()));
 }
Beispiel #2
0
 /// <summary>
 /// Ping the Sentinel server
 /// </summary>
 /// <returns>Status code</returns>
 public string Ping()
 {
     return(Write(RedisCommands.Ping()));
 }