public void start() {
// Treat caches configured with manual eviction differently.
// These caches require activation at the interceptor level.
EvictionConfiguration evictCfg = cfg.eviction();
isManualEviction = evictCfg.strategy() == EvictionStrategy.NONE
|| evictCfg.maxEntries() < 0;
}
@Override
public Object visitPutKeyValueCommand(InvocationContext ctx, PutKeyValueCommand command) throws Throwable {
Object retval = super.visitPutKeyValueCommand(ctx, command);