예제 #1
0
 public static Task <ServerStats> StatsAsync(this ISimpleMemcachedClient self)
 {
     return(self.StatsAsync(null));
 }
예제 #2
0
 public static ServerStats Stats(this ISimpleMemcachedClient self, string key = null)
 {
     return(self.StatsAsync(key).RunAndUnwrap());
 }