I was trying to see if MongoDB can be used as database for an accounting/bookkeeping software. I tried to search for answers from existing questions on stackoverflow, but all of the links that I found were very old, (pre-2017) and all of them said not to use MongoDB as it is not ACID compliant.
However, since version 4.0 which was released in 2018, MongoDB is now multi-document ACID compliant. So, given that it now supports ACID, is it OK to build an accounting application using MongoDB, or is there any other reason why one should still use RDBMS only?
PS: I've very new to programming, so please forgive me if this question seems very novice.