如何在 Redis 中更新插入(替换)操作? (作为管道)

发布于 2024-11-06 08:21:24 字数 81 浏览 0 评论 0原文

更新插入(替换)

  • 如果存在则更新
  • 如果不存在则插入

(使用主键作为管道)

Upsert (Replace)

  • Update If Exists
  • Insert If Not Exists

(Using Primary Key as Pipelined)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

涙—继续流 2024-11-13 08:21:24

“如果存在则更新”是什么意思?标准 Redis SET 命令(SETMSETHSETLSET 等)将更新(覆盖)如果密钥已存在,则插入现有密钥;如果密钥尚不存在,则插入新密钥。

听起来您正在要求默认行为。

What do you mean by "update if exists"? The standard Redis SET commands (SET, MSET, HSET, LSET, etc.) will update (overwrite) an existing key if the key already exists or insert a new key if the key doesn't already exist.

Sounds like you are asking for the default behavior.

鹿! 2024-11-13 08:21:24

Redis 支持其他数据结构,例如 SET、Sorted SET 和 SET 命令仅适用于字符串值,因为它需要字符串键和字符串值。

there are other data structures supported by redis for example SET, Sorted SET and SET command works for String values only as it expects a string key and string value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文