zjffdu commented on a change in pull request #4252: URL: https://github.com/apache/zeppelin/pull/4252#discussion_r780673496
########## File path: zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/NoteManager.java ########## @@ -561,69 +569,79 @@ public String toString() { * This class has 2 usage scenarios: * 1. metadata of note (only noteId and note name is loaded via reading the file name) * 2. the note object (note content is loaded from NotebookRepo) - * + * <br> * It will load note from NotebookRepo lazily until method getNote is called. + * A NoteCache ensures to free up resources, because its size is limited. */ public static class NoteNode { private Folder parent; - private Note note; + private NoteInfo noteinfo; Review comment: noteinfo -> noteInfo ? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org