I'd like to develop an app that uses MongoDB as the database, but which can cope with wifi dropout disconnects, so that the javascript client can cope with unreliable net connections, syncing when the connection is restored.
Does MongoDB support any kind of client-side API/data storage, and if not then what would be the best way to code the client so it can cope with wifi dropouts?
Thanks very much.
Like every database: MongoDB does not support such a functionality. Use a message queue on the client side and feed your update requests as producer into the queue and add some consumer speaking to MongoDB fetching the data out of the queue.