Does anyone have a nice way of ordering mongodb requests since Nodejs is async.
Say that I insert data1 into the database, and I immediately request to read that data, my read request might get executed before the data is written to the database.
Is there a nice way around this instead of forcing synchronous behavior on the requests?