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 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同