Limboy
The Baked Data architectural pattern

I’ve been exploring an architectural pattern for publishing websites over the past few years that I call the “Baked Data” pattern. It provides many of the advantages of static site …

Baked Data Architectural Pattern, 这个内容分发模式好像挺不错的,除了有 SSG 的诸多优势外,还支持执行 Server 代码,可以分发到各个 Serverless 平台(如 Vercel)。

核心原理是将 Data 分离出来,打包成一个只读的 Sqlite,放在 Server 端读取。需要额外做的一件事是当数据更新时,要同时更新这个 Sqlite 文件,并重新部署。