diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-18 08:19:18 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-18 08:19:18 +0000 |
commit | c5d06cf382ff07880220d57e12e1c2e5b843e701 (patch) | |
tree | 7979d55786c426f8224cd473ac681e5ddce38b1b /mandocdb.c | |
parent | 3017015a1ebfbcd47cb443146a0161f97d49cd43 (diff) | |
download | mandoc-c5d06cf382ff07880220d57e12e1c2e5b843e701.tar.gz |
Despite some experimenting, i'm unable to find any relevant effect of
creating an index for the keys table on apropos(1) search times;
apparently, adding that index was premature optimization in the first
place; so, stop adding that index.
Its root gone, the following evil is reduced (/usr/share/man on my notebook)
- DB build time with -Q goes down by 15%, now at 1/3 of makewhatis
- DB size with -Q goes down by 35%, now at 3.5x of makewhatis
- full DB build time goes down by 12%, now at 2.1x of makewhatis
- full DB size goes down by 42%, now at 11.5x of makewhatis
Diffstat (limited to 'mandocdb.c')
-rw-r--r-- | mandocdb.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1924,9 +1924,7 @@ dbopen(int real) " \"pageid\" INTEGER NOT NULL REFERENCES mpages(id) " "ON DELETE CASCADE,\n" " \"id\" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL\n" - ");\n" - "\n" - "CREATE INDEX \"key_index\" ON keys (key);\n"; + ");\n"; if (SQLITE_OK != sqlite3_exec(db, sql, NULL, NULL, NULL)) { exitcode = (int)MANDOCLEVEL_SYSERR; |