public long CompressionThreshold { get; set; }
public string DefaultEncoding { get; set; }
public bool EnableCompression { get; set; }
public string PoolName { get; set; }
public bool PrimitiveAsString { get; set; }
public long Decrement(string key);
public long Decrement(string key, long inc);
public long Decrement(string key, long inc, int hashCode);
public long GetCounter(string key);
public long GetCounter(string key, object hashCode);
public Hashtable GetMultiple(string[] keys);
public Hashtable GetMultiple(string[] keys, int[] hashCodes);
public Hashtable GetMultiple(string[] keys, int[] hashCodes, bool asString);
public object[] GetMultipleArray(string[] keys);
public object[] GetMultipleArray(string[] keys, int[] hashCodes);
public object[] GetMultipleArray(string[] keys, int[] hashCodes, bool asString);
public long Increment(string key);
public long Increment(string key, long inc);
public long Increment(string key, long inc, int hashCode);
public bool Replace(string key, object value);
public bool Replace(string key, object value, DateTime expiry);
public bool Replace(string key, object value, int hashCode);
public bool Replace(string key, object value, DateTime expiry, int hashCode);
public Hashtable Stats();
public Hashtable Stats(ArrayList servers);
public bool StoreCounter(string key, long counter);
public bool StoreCounter(string key, long counter, int hashCode);