Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在试图找出 adb.json是什么以及为什么它会自动生成。hexo.io 中的所有文档都是:
db.json
$ hexo clean Cleans the cache file (db.json) and generated files (public).
这究竟是什么?由于这些都是静态页面,这是某种临时数据库吗?
最常db.json用于使用hexo server. 我相信它可以提高性能。它不影响生成(hexo generate)和部署(hexo deploy)
hexo server
hexo generate
hexo deploy
db.json文件存储生成站点所需的所有数据。有所有帖子帖子、标签、类别等。数据存储在 JSON 格式的字符串中,因此解析数据和生成站点更加容易和快捷。