I use RedisCacheConfiguration custom serialize key add some prefix RedisCache.clear() can't clear cache key; Example i custom serialize key add prefix 'test:' ```txt key = 'a.b.c' createCacheKey(key) -> 'a.b.c' serializeCacheKey(createCacheKey(key)) -> 'test:a.b.c' ``` but clear not call serializeCacheKey method cause not to clear cache; ```java @Override public void clear() { byte[] pattern = conversionService.convert(createCacheKey("*"), byte[].class); cacheWriter.clean(name, pattern); } ``` use 2.6.x 2.7.x will reproduce the issue use 3.0.x no this issue