-
Notifications
You must be signed in to change notification settings - Fork 114
Reduce database size #418
Copy link
Copy link
Open
Labels
Target: DatabaseIssues related to the database schema of the core or a plugin, or database handling in general.Issues related to the database schema of the core or a plugin, or database handling in general.
Milestone
Metadata
Metadata
Assignees
Labels
Target: DatabaseIssues related to the database schema of the core or a plugin, or database handling in general.Issues related to the database schema of the core or a plugin, or database handling in general.
According to
sqlite3_analyzertool the 3 largest tables areCppDocComment(50.3%),CppAstNode(33.1%) andFileContent(5.0%). Measurement is done on a Xerces parsing.CppDocComment is this huge, because we're storing the comments in HTML format with a lot of styling. We should remove HTML formatting. We should also consider storing these doc comments as compressed .zip.
Related issues: #417, #21.