mobile wallpaper 1mobile wallpaper 2mobile wallpaper 3mobile wallpaper 4
62 字
1 分钟
Cloudflare KV 存储使用指南
2026-05-15

Cloudflare KV 是最终一致的全球键值存储,读取极快,写入稍有延迟。

在 Workers 中使用#

// 写入
await MY_KV.put("user:123", JSON.stringify({ name: "Alice" }));
// 读取
const raw = await MY_KV.get("user:123");
const user = JSON.parse(raw);

注意事项#

  • 写入全球同步约需 60 秒
  • 单值最大 25 MB
  • 免费版每天 10 万次读取
分享

如果这篇文章对你有帮助,欢迎分享给更多人!

Cloudflare KV 存储使用指南
https://example.pages.dev/posts/test-cloudflare-kv/
作者
博主
发布于
2026-05-15
许可协议
CC BY-NC-SA 4.0

部分信息可能已经过时

目录