hi !
Im planning to build a shopping cart (I know I should use an already made solution)
However as always I have some questions about this issue. When coming to think about if I should keep with the 100% server-side schema or should I go into a 90% client-side schema-10% server-side schema
By this I mean , is it a good idea to handle the whole cart process on the server or should I try to make the client do the process himself.
If the server do the whole process it would spare resources everytime someone adds an item or edit/delete items on the cart
If I go with the client side solution It would be like having a JS that hold the items till checkout.
I'm mainly worried about the client, however I do care about server load
What are your oppinions ?