MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Czy mogę wysłać zapytanie MongoDB ObjectId według daty?

Wstawianie znaczników czasu do identyfikatorów ObjectId obejmuje zapytania oparte na datach osadzonych w identyfikatorze ObjectId z dużą szczegółowością.

Krótko w kodzie 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') } });


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Czy możesz określić klucz dla $addToSet w Mongo?

  2. Jak zwrócić dane JSON z php MongoCursor

  3. Jak dołączyć do dwóch dodatkowych kolekcji z warunkami

  4. Jak korzystać z MongoRegex (sterownik MongoDB C#)

  5. Jak kontynuować wstawianie po błędzie zduplikowanego klucza za pomocą PyMongo?