我正在尝试为godoc
处理的项目构建文档。
GO111MODULE=on
go version go1.12.1 linux/amd64
我使用:
$ godoc -v -http=":8080" -analysis=type -goroot=$PWD -index
有效。尽管开始使用-analysis=type,pointer
会花费很多时间。
我正在尝试使用以下方式保存索引:
$ godoc -v -http=":8080" -analysis=type -goroot=$PWD -index -index_files=$PWD/doc/index.db -write_index
# 2019/04/06 16:46:07 initialize file systems
# 2019/04/06 16:46:07 updating index...
# 2019/04/06 16:46:07 index updated (0.000290604s, 0 bytes of source, 0 files, 0 lines, 0 unique words, 0 spots)
# 2019/04/06 16:46:07 before GC: bytes = 3646032 footprint = 72284408
# 2019/04/06 16:46:07 after GC: bytes = 3190736 footprint = 72284408
# 2019/04/06 16:46:07 writing index file [THE_PATH_TO_PROJECT]/doc/index.db
# 2019/04/06 16:46:07 done
$ wc --bytes ./doc/index.db
# 1456 ./doc/index.db
它工作不到一秒钟,却什么也没做。
我在做什么错了?