You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With spring boot version 2.1.4, I found below code which doesn't serve as prefix, instead it overrides the cacheName passed in. Is it a bug? or it is by design?
publicRedisCacheConfigurationprefixKeysWith(Stringprefix) {
Assert.notNull(prefix, "Prefix must not be null!");
returncomputePrefixWith((cacheName) -> prefix);
}
Is it support to be below code ?
publicRedisCacheConfigurationprefixKeysWith(Stringprefix) {
Assert.notNull(prefix, "Prefix must not be null!");
returncomputePrefixWith((cacheName) -> prefix + ":" + cacheName + "::");
}