return "CassandraCacheStore";
}
private String hashKey(Object key) throws UnsupportedKeyTypeException {
if (!keyMapper.isSupportedType(key.getClass())) {
throw new UnsupportedKeyTypeException(key);
}
return entryKeyPrefix + keyMapper.getStringMapping(key);
}