protected void TestPutClearAsync(IRemoteCache <string, string> cache)
        {
            cache.Put(K1, V1);
            cache.Put(K2, V2);
            Task task = cache.ClearAsync();

            task.Wait(5000);
            Assert.IsTrue(cache.IsEmpty());
        }