We build a e-commerce system on top of node, express and mongo and for my next ecommerce system I would use node, express again but not mongo. Cause when you have no ACID you need to do it your own and that can be very error proune, complicated and takes very much time!
When you use both keep in mind that transfering data between both databases needs to be ACID too. My advice would be to start with MySQL or Postgres and then when you really need it use something like mongodb. Maybe you should keep a look on Postgres and the Foreign Data Wrappers (fdw). Where you can integrate mongodb (or other databases) in your SQL Database. Am Mittwoch, 24. Oktober 2012 11:29:21 UTC+2 schrieb guzelgoz: > > What about a combined solution between MongoDB and Mysql where you would > use Mysql only for the transaction side of things and Mongo for all the > rest? Would this be worth investigating? > > > On Wed, Oct 24, 2012 at 11:13 AM, Karl <[email protected] <javascript:>>wrote: > >> Trust is a big asset, I saw a recent study somewhere that webshoppers >> seem to be considerably more loyal than one assumes. More reason not to >> take chances. Risk taking was what got us into the current complex >> situation (I'm in Spain) >> >> El miércoles, 24 de octubre de 2012 09:51:23 UTC+2, Adam Reynolds >> escribió: >>> >>> This. This beyond anything else. You would have a major problem with >>> customer trust. >>> >>> On a side note you can google mongodb transactions and see the >>> hassle/failure people have had trying to make transactional processes work >>> within Mongodb. It really is the wrong tool for the job at the (moment). >>> >>> On Wed, Oct 24, 2012 at 12:05 AM, Eric S <[email protected]> wrote: >>> >>>> >>>> The last factor, and probably the most important one in my opinion, is >>>> lost reputation. If you bought something online, never received anything, >>>> and when you contacted the seller, they said that they had no record of >>>> your order other than the CC charge, would you EVER use them again, even >>>> if >>>> they promptly refunded your money? >>>> >>> -- >> Job Board: http://jobs.nodejs.org/ >> Posting guidelines: >> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines >> You received this message because you are subscribed to the Google >> Groups "nodejs" group. >> To post to this group, send email to [email protected]<javascript:> >> To unsubscribe from this group, send email to >> [email protected] <javascript:> >> For more options, visit this group at >> http://groups.google.com/group/nodejs?hl=en?hl=en >> > > -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
