Suppose I have the following root object:
private Map<String, Container> root = new HashMap<>();
Will the whole map be loaded when the storage is started?
If yes, how to prevent loading the values of the root map on startup?
Or should I have the Container wrapped by Lazy?
private Map<String, Lazy<Container>> root = new HashMap<>();