godoc -write_index不执行任何操作。我究竟做错了什么?

时间:2019-04-06 14:00:43

标签: go godoc

我正在尝试为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

它工作不到一秒钟,却什么也没做。

我在做什么错了?

0 个答案:

没有答案