/** {@inheritDoc} */
 @Override
 public boolean evict(K key, @Nullable GridPredicate<? super GridCacheEntry<K, V>>[] filter) {
   // Use unary 'and' to make sure that both sides execute.
   return super.evict(key, filter) & dht.evict(key, filter);
 }