douyujun0152 2018-12-13 17:05
浏览 474
已采纳

在MongoDB中保存纳秒级时间戳(由Go生成,使用Node.js保存)

I am trying to store Unix timestamps in nanoseconds into the Date type field of a Mongodb database.

The unix timestamps in nanoseconds are generated in a Go program (with time.Now().UnixNano()), submitted to Kafa to be read by a Node.js script which uses mongoose to write the payload object containing the unix timestamp in nanoseconds to the Mongodb store.

However this is throwing an error

UnhandledPromiseRejectionWarning: ValidationError: trade validation failed: timestamp: Cast to Date failed for value "1544720051987010000" at path "timestamp"

Is there a better way to store unix timestamps in nanosecond in Mongodb?

  • 写回答

1条回答 默认 最新

  • dongzong8110 2018-12-13 17:45
    关注

    I am trying to store Unix timestamps in nanoseconds into the Date type field of a Mongodb database. Nyxynyx

    That is not going to work.


    Internally, Date objects are stored as a signed 64-bit integer representing the number of milliseconds since the Unix epoch (Jan 1, 1970).

    MongoDB Reference: Date()


    For example,

    package main
    
    import (
        "fmt"
        "time"
    )
    
    func main() {
        timestamp := time.Now().UnixNano() / int64(time.Millisecond)
        fmt.Println(timestamp)
    }
    

    Playground: https://play.golang.org/p/21S_DeVA4jv

    Output:

    1257894000000
    

    To store Unix nanoseconds, use the long data type.

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

报告相同问题?

悬赏问题

  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集