return new ClientCacheProxy<K, V>(cacheConfig, clientContext, this);
}
@Override
protected <K, V> CacheConfig<K, V> getCacheConfigFromPartition(String cacheName, String simpleCacheName) {
ClientRequest request = new CacheGetConfigRequest(cacheName, simpleCacheName, InMemoryFormat.BINARY);
try {
final Future future = clientContext.getInvocationService().invokeOnKeyOwner(request, cacheName);
return clientContext.getSerializationService().toObject(future.get());
} catch (Exception e) {
throw ExceptionUtil.rethrow(e);