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.
我正在查看一些在 Node 中实现作业队列的选项,并偶然发现了使用 Redis 的 Kue。
是不是因为作业存储在 Redis 中,如果我要重新启动 Node 或服务器,所有作业都会丢失?
Redis 是内存中的持久存储。它在 conf 文件中配置的一定时间后将数据存储在键值对中。因此,即使服务器或节点出现故障或重新启动,您提交的数据也将保持不变。