when dealing with mongodb, when should i use the {safe: true} on queries?
Right now I use the \'safe\' option just to check if my queries were inserted or updated succes
Safe is only necessary on writes, not reads. Queries are only reads.