Hi All
Hope you're well!
I currently have a shopping cart application that creates orders and submits them to a shop. Some functionality I included is the ability to create a draft shopping cart where a user can save it, then pick it back up later. The problem I'm having is the speed; I have the cart as a local collection, and when a user saves, it patches into an excel database. To continue, make changes and resave or submit. The application deletes all rows in the database that exists and then patches in the new shopping cart items. I did this since I found it would be the easiest, however, for shopping carts that contain 50 items or more, the Remove() function takes an extremely long time.
So just wondering if I were to switch from an excel connector to CDS or SQL. How much faster will the app be able to remove the rows in the shopping cart?
Or is there another solution to this problem like coding something better.