- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我应该更喜欢什么:
erlang:start_timer(Ttl, self(), time_to_die)
timer:send_after(Ttl, self(), {timeout, time_to_die})
最佳答案
Common Caveats section of the Erlang Efficiency Guide说:
Creating timers using
erlang:send_after/3
anderlang:start_timer/3
is much more efficient than using the timers provided by thetimer
module. Thetimer
module uses a separate process to manage the timers, and that process can easily become overloaded if many processes create and cancel timers frequently (especially when using the SMP emulator).The functions in the
timer
module that do not manage timers (such astimer:tc/3
ortimer:sleep/1
), do not call the timer-server process and are therefore harmless.
关于erlang:start_timer/3 vs 计时器:send_after/3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11626199/
我想在延迟后向进程发送消息,并发现了 erlang:send_after/4。 当查看docs时看起来这正是我想要的: erlang:send_after(Time, Dest, Msg, Optio
我应该更喜欢什么: erlang:start_timer(Ttl, self(), time_to_die) 或者 timer:send_after(Ttl, self(), {timeout, ti
我是一名优秀的程序员,十分优秀!