resource: Updated documentation and smaller fixes

* updated documentation of: cdb loading, advanced settings, graph view
* removed stats of search index
* added global search paths to cdb summary
This commit is contained in:
Eberhard Graether
2016-03-14 14:45:42 +01:00
parent f82da323b3
commit cefaeae1ab
6 changed files with 56 additions and 10 deletions
+4 -3
View File
@@ -690,9 +690,10 @@ StorageStats Storage::getStorageStats() const
stats.nodeCount = m_sqliteStorage.getNodeCount();
stats.edgeCount = m_sqliteStorage.getEdgeCount();
stats.charCount = m_tokenIndex.getCharCount();
stats.wordCount = m_tokenIndex.getWordCount();
stats.searchNodeCount = m_tokenIndex.getNodeCount();
// Takes too much time
// stats.charCount = m_tokenIndex.getCharCount();
// stats.wordCount = m_tokenIndex.getWordCount();
// stats.searchNodeCount = m_tokenIndex.getNodeCount();
stats.fileCount = m_sqliteStorage.getFileCount();
stats.fileLOCCount = m_sqliteStorage.getFileLOCCount();