I am reading this document: http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%24mod
$mod
The $ mod operator allows you to execute quick modular queries to replace the usual case for where clauses. For example, the following query is $ where:
db.things.find( "this.a % 10 == 1")
can be replaced by:
db.things.find( { a : { $mod : [ 10 , 1 ] } } )
Therefore, I did not understand what it means fast. Performance?
source
share