예제 #1
0
 public static bool Append(this ISimpleMemcachedClient self, string key, ArraySegment <byte> data)
 {
     return(self.Concate(ConcatenationMode.Append, key, data));
 }
예제 #2
0
 public static bool Prepend(this ISimpleMemcachedClient self, string key, byte[] data)
 {
     return(self.Concate(ConcatenationMode.Prepend, key, new ArraySegment <byte>(data)));
 }