dongyuan8312 2014-03-08 07:21
浏览 9
已采纳

如何使超时功能更好

I was using time.After(time), which is working OK.

My question is: Is it precise and should I use this or should I make my own function? I am using this with a Raft Consensus algorithm implementation.

  • 写回答

1条回答 默认 最新

  • douna1895 2014-03-08 09:02
    关注

    I presume you mean time.After?

    I wrote a quick benchmark to answer this question.

    Run with go test -run XXX -bench . time_after_test.go

    package main
    
    import (
        "testing"
        "time"
    )
    
    func BenchmarkTimeAfterSecond(b *testing.B) {
        for i := 0; i < b.N; i++ {
            <-time.After(time.Second)
        }
    }
    
    func BenchmarkTimeAfterMillisecond(b *testing.B) {
        for i := 0; i < b.N; i++ {
            <-time.After(time.Millisecond)
        }
    }
    
    func BenchmarkTimeAfterMicrosecond(b *testing.B) {
        for i := 0; i < b.N; i++ {
            <-time.After(time.Microsecond)
        }
    }
    
    func BenchmarkTimeAfterNanosecond(b *testing.B) {
        for i := 0; i < b.N; i++ {
            <-time.After(time.Nanosecond)
        }
    }
    

    This gave this under go1.2 on a linux amd64 machine

    BenchmarkTimeAfterSecond                   1    1000132210 ns/op
    BenchmarkTimeAfterMillisecond           2000       1106763 ns/op
    BenchmarkTimeAfterMicrosecond          50000         62649 ns/op
    BenchmarkTimeAfterNanosecond         5000000           493 ns/op
    

    So the answer is accurate to 0.1-0.2 mS or so on my machine.

    This is extremely OS and hardware dependent though so will vary on your OS and hardware of choice.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源