protected void createCacheManagers() {
ConfigurationBuilder builder = getDefaultClusteredCacheConfig(CacheMode.DIST_SYNC, true);
//Verification for ISPN-2138 - the following exception should not appear:
//java.lang.ClassCastException: org.infinispan.marshall.MarshalledValue cannot be cast to org.infinispan.distexec.mapreduce.Book
builder.storeAsBinary().enable();
createClusteredCaches(4, "bookSearch", builder);
}
}