throw new IllegalArgumentException("Illegal stats args: " + execute);
String name = split[0];
Cache cache = cacheConfig.findCache(name);
if (cache != null) {
CacheStatistics stats = cache.getCacheStatistics();
String op = split[1];
Method m = CacheStatistics.class.getMethod(op);
display(op, m.invoke(stats));
} else {
display("", "No such cache:" + name);