initialize method

Future<void> initialize()

Initializes the cache manager

Implementation

Future<void> initialize() async {
  try {
    // DataCacheX is already initialized by getIt
    logger?.info('DataCacheManager initialized with namespace: $namespace');
  } catch (e) {
    logger?.error('Error initializing DataCacheManager: $e');
    rethrow;
  }
}