addManager method
Registers a CacheManager pod with this registry.
Each manager provides one or more caches. Multiple managers can be combined in a composite or chained structure to enable unified cache operations across heterogeneous backends.
Implementation
@override
void addManager(CacheManager cacheManager) {
return synchronized(_cacheManagers, () {
_cacheManagers.remove(cacheManager);
_cacheManagers.add(cacheManager);
});
}