Trying to do some integer math in mongodb, and having some problems... :S
Is there a way to round doubles up or down in the mongo db aggregation framework?
|
As per the comment from Stennie, the floor and ceiling methods are not supported. And as per my comment above, the best solution that I could find was just doing an operation that looks like: (num-mod(num,1)) which should yield the same result as the floor function. |
|||
|
|
$flooror$ceiling. If there are functions or operators you would like to see added, please suggest these in the MongoDB SERVER project, with the component "Aggregation Framework". – Stennie Nov 29 '12 at 3:41