MongoDB’s ObjectId has a getTimestamp() method that returns time when the record was inserted. Is there a similar method for getting time of last update or should I use a separate column to save this data?
Using PHP (if it matters).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
MongoDB doesn’t store the last update so that’s something you’ll have to store yourself through your application in a separate field.