Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该使用什么类型来存储 MongoDB 的时间长度?
我需要存储声音数据的时间长度。所以时间戳类型似乎不正确。
您应该为此使用整数。
MongoDB 有两种数据类型,特别是用于计时:Date和Timestamp。但这些是为了代表一个特定的时间点。它们不适合表示持续时间(另外,时间戳仅供内部使用。不鼓励用户使用它)。
所以最好的办法是将持续时间转换为毫秒并将这个值存储在数据库中。