Пример #1
0
 void CacheClientProxy::LocalPeek(const WritableKey& key, Readable& value)
 {
     GetCacheImpl(impl).LocalPeek(key, value);
 }
Пример #2
0
 bool CacheClientProxy::ContainsKeys(const Writable & keys)
 {
     return GetCacheImpl(impl).ContainsKeys(keys);
 }
Пример #3
0
 int64_t CacheClientProxy::GetSize(int32_t peekModes)
 {
     return GetCacheImpl(impl).GetSize(peekModes);
 }
Пример #4
0
 bool CacheClientProxy::Replace(const WritableKey& key, const Writable& value)
 {
     return GetCacheImpl(impl).Replace(key, value);
 }
Пример #5
0
 bool CacheClientProxy::ContainsKey(const WritableKey & key)
 {
     return GetCacheImpl(impl).ContainsKey(key);
 }
Пример #6
0
 void CacheClientProxy::RemoveAll(const Writable & keys)
 {
     return GetCacheImpl(impl).RemoveAll(keys);
 }
Пример #7
0
 void CacheClientProxy::Clear()
 {
     GetCacheImpl(impl).Clear();
 }
Пример #8
0
 void CacheClientProxy::Put(const WritableKey& key, const Writable& value)
 {
     GetCacheImpl(impl).Put(key, value);
 }
Пример #9
0
 void CacheClientProxy::Get(const WritableKey& key, Readable& value)
 {
     GetCacheImpl(impl).Get(key, value);
 }
Пример #10
0
 bool CacheClientProxy::PutIfAbsent(const WritableKey& key, const Writable& val)
 {
     return GetCacheImpl(impl).PutIfAbsent(key, val);
 }
Пример #11
0
 void CacheClientProxy::GetAndPutIfAbsent(const WritableKey& key, const Writable& valIn,
     Readable& valOut)
 {
     GetCacheImpl(impl).GetAndPutIfAbsent(key, valIn, valOut);
 }
Пример #12
0
 void CacheClientProxy::GetAndReplace(const WritableKey& key, const Writable& valIn, Readable& valOut)
 {
     GetCacheImpl(impl).GetAndReplace(key, valIn, valOut);
 }
Пример #13
0
 bool CacheClientProxy::Replace(const WritableKey& key, const Writable& oldVal, const Writable& newVal)
 {
     return GetCacheImpl(impl).Replace(key, oldVal, newVal);
 }
Пример #14
0
 void CacheClientProxy::ClearAll(const Writable& keys)
 {
     GetCacheImpl(impl).ClearAll(keys);
 }
Пример #15
0
 void CacheClientProxy::RefreshAffinityMapping()
 {
     GetCacheImpl(impl).RefreshAffinityMapping();
 }
Пример #16
0
 void CacheClientProxy::PutAll(const Writable& pairs)
 {
     GetCacheImpl(impl).PutAll(pairs);
 }
Пример #17
0
 bool CacheClientProxy::Remove(const WritableKey& key)
 {
     return GetCacheImpl(impl).Remove(key);
 }
Пример #18
0
 void CacheClientProxy::GetAll(const Writable & keys, Readable & pairs)
 {
     GetCacheImpl(impl).GetAll(keys, pairs);
 }
Пример #19
0
 void CacheClientProxy::RemoveAll()
 {
     GetCacheImpl(impl).RemoveAll();
 }
Пример #20
0
 void CacheClientProxy::Clear(const WritableKey& key)
 {
     GetCacheImpl(impl).Clear(key);
 }