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
in spring-session project, spring:session:sessions is used as default name.
so may : be valid in cache name pattern.
as the docs says
For maximum compatibility cache names should only
be composed with the characters [-_.a-zA-Z0-9].
The characters {}|^&=";:<>*?/ are not allowed in a cache name.
No the :' is excluded or forbidden. I try to limit the use of special characters in cache names because the names could be used by extensions, for example JMX and micrometer, so it should be clear what characters need to be supported. Also the : is used as separator in cache2k <manager>:<name>.
If there is common use of : in cache names, we should allow it.
Thanks for the hint about spring-sessions. I see that spring:session:sessions used as default for Hazelcast. But its possible to change and I don't find a reference to the Spring caching abstraction. How is a cache being used there?
in
spring-session
project,spring:session:sessions
is used as default name.so may
:
be valid in cache name pattern.as the docs says
and the code impl
cache2k/cache2k-core/src/main/java/org/cache2k/core/CacheManagerImpl.java
Lines 141 to 163 in d6db509
The text was updated successfully, but these errors were encountered: