*/
public static SchematicDb get( CacheContainer cacheContainer,
String cacheName ) {
Cache<String, SchematicEntry> rawCache = cacheContainer.getCache(cacheName);
AdvancedCache<String, SchematicEntry> cache = rawCache.getAdvancedCache();
return new CacheSchematicDb(cache);
}