dtg78700 2018-12-26 18:01
浏览 49
已采纳

股票行情仍然存在于内存中

Why when I initialize ticker and then update it, original ticker still live in memory and if I make for loop it will kill my RAM very soon

timeOut := 10
ticker := time.NewTicker(time.Duration(timeOut) * time.Second)
for {
    ticker = time.NewTicker(time.Duration(timeOut) * time.Second)
}
  • 写回答

2条回答 默认 最新

  • doufen3786 2018-12-26 18:08
    关注
    for {
        ticker = time.NewTicker(time.Duration(timeOut) * time.Second)
    }
    

    That's going to create ticker instances as fast as possible, and because of the nature of ticker objects they won't be able to clean up ( they're referenced by the implementation of ticket which, due to its async nature, happens in a different goroutine). Go can do this very quickly, resulting in OOM ( out of memory) error very rapidly.

    But this pattern doesn't make any sense. There's no good reason to create new tickers like this in a for loop. You can create multiple tickers, even very many of them, but you can't create infinite tickers, nor does it make much sense to do so.

    Further, notice you're not actually using your tickers anywhere. Consider the example here: https://gobyexample.com/tickers . You'll see how they interact with the ticker to make code run with each tick. Note the ticker there is created once, not in a loop.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应