1.如果将日期用字符串格式存在mogodb中,查询时,无法查询某一时间段的数据。如果想查询某一时间段之间的数据,最好把日期用时间格式来保存(注意:mongo中保存的时间格式是格林尼治时区的标准时间,中国的时间是东八区(+8),也就是说mongo中的日期看起来会比国内时间少八个小时)
2.java中使用mongodb时,Aggregation.group("hid").count().as("total")与Aggregation.count().as("total")的区别
Aggregation.count().as("total") 表示的是:所有的数据条数
Aggregation.group("hid").count().as("total") 表示的是:每个hid的数据条数