Code Monkey home page Code Monkey logo

Comments (2)

lrstanley avatar lrstanley commented on September 26, 2024

The bson spec defines datetime specifications as milliseconds. Even though duration doesn't necessarily equate to a datetime representation, it may be good for mgo to utilize the same datatype (int64). One thing you could do is wrap your time.Duration in a different type which supports custom BSON marshaling/unmarshaling.

Though others may have different opinions, I personally feel that time.Duration probably shouldn't be truncated to an int64 (milliseconds), because loss of accuracy/precision in regards to time is a huge issue, esp. when talking about a duration. I feel nanoseconds may have been a better choice, because I think it is still a very common unit to use, whereas something smaller like picoseconds aren't.

In any case, now that this has already been implemented, I don't think it can be reversed without causing lots of issues for others.

from mgo.

domodwyer avatar domodwyer commented on September 26, 2024

Hi @TeoV,

@lrstanley's fantastic explanation is right - ideally it should be as precise as possible (especially as we're throwing away precision in this case!) but the original mgo code uses milliseconds so it would be a breaking change, not necessarily for mgo users, but it would definitely break any consumers of the stored data using a different language/driver.

You could experiment with wrapping a time.Time with a custom type in your storage layer as suggested - it's the best way to get what you're after off the top of my head.

Sorry!
Dom

from mgo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.