(newbie question, sorry for that - I'm just starting with MongoDB)
I connect to mongo on heroku as follows:
self.connection = pymongo.Connection(MONGO_URL) self.db = self.connection.app13805318
Is it possible that I will try to use self.db after a few hours and cannot read it? Do I need to do any monitoring or updating the connection?
source share