Solución:
La inserción de marcas de tiempo en ObjectIds cubre las consultas basadas en fechas incrustadas en ObjectId con gran detalle.
Brevemente en código JavaScript:
/* This function returns an ObjectId embedded with a given datetime */
/* Accepts both Date object and string input */
function objectIdWithTimestamp(timestamp) {
/* Convert string date to Date object (otherwise assume timestamp is a date) */
if (typeof(timestamp) == 'string') {
timestamp = new Date(timestamp);
}
/* Convert date object to hex seconds since Unix epoch */
var hexSeconds = Math.floor(timestamp/1000).toString(16);
/* Create an ObjectId with that hex timestamp */
var constructedObjectId = ObjectId(hexSeconds + "0000000000000000");
return constructedObjectId
}
/* Find all documents created after midnight on May 25th, 1980 */
db.mycollection.find({ _id: { $gt: objectIdWithTimestamp('1980/05/25') } });
El uso de la función incorporada proporcionada por los controladores mongodb en Node.js le permite consultar por cualquier marca de tiempo:
var timestamp = Date.now();
var objectId = ObjectID.createFromTime(timestamp / 1000);
Alternativamente, para buscar registros antes de la hora actual, simplemente puede hacer:
var objectId = new ObjectID(); // or ObjectId in the mongo shell
Fuente: http://mongodb.github.io/node-mongodb-native/api-bson-generated/objectid.html
En pymongo
, se puede hacer de esta manera:
import datetime
from bson.objectid import ObjectId
mins = 15
gen_time = datetime.datetime.today() - datetime.timedelta(mins=mins)
dummy_id = ObjectId.from_datetime(gen_time)
result = list(db.coll.find({"_id": {"$gte": dummy_id}}))
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)