初级会员
  • 第 18643 位会员
  • SomeWan
  • 2018-05-15 18:52:51
  • Offline
  • 19 90

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 2019-01-15 11:34:27 评论了博文 6 款最棒的 Go 语言 Web 框架简介
    这是在给 iris 做广告吗。。。
  • 2018-05-15 18:57:48 评论了主题 Golang 操作mongodb bson.MongoTimestamp的问题
    > Timestamp values are a 64 bit value where: the first 32 bits are a time_t value (seconds since the Unix epoch) the second 32 bits are an incrementing ordinal for operations within a given second. mongodb 的 timestamp 是两个 int32组成的。取出来的值t/2^32即是对应的时间戳;t%2^32即是对应的顺序。 6305673390453618420/2^32 = 1,468,153,994(2016-07-10 20:33:14)