cacheStoreForNamespace method

PixaCacheStoreDescriptor? cacheStoreForNamespace(
  1. String namespace
)

Returns the cache-store descriptor registered for namespace, if any.

Implementation

PixaCacheStoreDescriptor? cacheStoreForNamespace(String namespace) {
  return _cacheStoreRoutes[_normalizeRouteClaim(namespace)];
}