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.
我有兴趣使用 lua 脚本将进程元素发布到 Redis 列表。所以我想知道是否有办法告诉 Redis:“在将值推入列表 Y 后始终运行 lua 脚本 X”
不,你不能那样做。除非您制作自己的命令(在 lua 中),否则它将调用 LPUSH 并执行您的后处理。您还必须让所有开发人员使用该命令而不是原始 LPUSH(当涉及相应的键时)。祝你好运:)