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.
我有一个具有one_for_one重启策略的主管。是否可以在子进程重新启动之间设置一些时间间隔?
one_for_one
例如,远程数据库崩溃了,我想在恢复连接尝试之间等待 10 秒。
实际上,您可以让主管立即重新启动其子代并实现所谓的延迟初始化:
这样,您可以确保在正确初始化数据库后处理对 gen_server 的所有请求。