}
@Override
protected <K, V> CacheConfig<K, V> createConfigOnPartition(CacheConfig<K, V> cacheConfig) {
//CREATE THE CONFIG ON PARTITION BY cacheNamePrefix using a request
final CacheCreateConfigOperation cacheCreateConfigOperation = new CacheCreateConfigOperation(cacheConfig);
final OperationService operationService = nodeEngine.getOperationService();
int partitionId = nodeEngine.getPartitionService().getPartitionId(cacheConfig.getNameWithPrefix());
final InternalCompletableFuture<CacheConfig<K, V>> f = operationService
.invokeOnPartition(CacheService.SERVICE_NAME, cacheCreateConfigOperation, partitionId);