How do I get the timestamp from the MongoDB id?
Advertisement
Answer
The timestamp is contained in the first 4 bytes of a mongoDB id (see: http://www.mongodb.org/display/DOCS/Object+IDs).
So your timestamp is:
JavaScript
x
2
1
timestamp = _id.toString().substring(0,8)
2
and
JavaScript
1
2
1
date = new Date( parseInt( timestamp, 16 ) * 1000 )
2