I have documents stored in MongoDB with each documents containing a "created_at" that looks like this:
"created_at" : "Wed Jan 24 15:25:20 +0000 2018"
I couldn't do a range query with a format like this. Should I update all of the documents and convert them into readable dates? Or is there a way in PHP where I should just convert the dates inside the PHP without updating/harming the documents inside MongoDB. The latter seems to be more sensible since I am constantly feeding my database with streams of tweets everyday.