Is it possible to query for a specific date ?
I found in the mongo Cookbook that we can do it for a range Querying for a Date Range Like that :
db.posts.find({"created_on": {"$gte": start, "$lt": end}})
But is it possible for a specific date ? This doesn't work :
db.posts.find({"created_on": new Date(2012, 7, 14) })