有没有办法在 MongoDB 的 mapreduce Javascript 或 shell 中对两个 NumberInt 或 NumberLongs 执行整数运算?如您所见,我得到:
> typeof (NumberInt(1) + NumberInt(1))
number
# (and this is here sort of just to gripe)
> NumberLong(2) == NumberInt(2)
false
> 2==NumberLong(2)
true
> 2==NumberInt(2)
true
相关的:
- mongo db map reduce sum 结果为整数似乎是相同的,但我得到不同的结果。
- Mongo shell 中的 NumberLong 算术实际上远非微不足道。