我们正在讨论如何在MongoDB中存储日期。我对Mongo还很陌生,所以当我在文档中看到以下内容时(http://api.mongodb.org/perl/MongoDB/DataTypes.html#Dates)我想知道:
Warning: creating DateTime objects is extremely slow. Consider saving dates as numbers and converting the numbers to DateTimes when needed. A single DateTime field can make deserialization up to 10 times slower.
如果我们只是存储它们,并让它们对存储中的对象进行查询,这是一回事,但如果我们对这些字段进行过滤或排序,那似乎是另一回事。问题是从数字到DateTime的来回转换。欢迎对性能考虑进行任何思考。谢谢