Hi Guys,
I have a mixt solution, B2C/B2B running on 8.8.1.32
FOr B2B clients, we have noticed a significant decrease in performance as the number or orderlines increases.
We are using AJAX call for add to cart, and the page where we add to is displaying a JASON with the content of the cart. Just to be sure, I also tried rendering an empty layout but there was no change in performance.
I have used debug=true to identify the calls that are taken unreasonable amount of time.
I have identified one in particular:
USE [df_austral_dw]
DELETE FROM EcomOrderContextAccessUserRelation WHERE OrderContextAccessUserAccessUserID = 9698 AND OrderContextAccessUserOrderContextID = 'ORDERCONTEXT2';INSERT INTO EcomOrderContextAccessUserRelation (OrderContextAccessUserAccessUserID, OrderContextAccessUserOrderContextID, OrderContextAccessUserOrderID) VALUES (9698, 'ORDERCONTEXT2', 'CART28186') took 4424 ms
Why is this needed and how can I avoid it/optimise it?
Thanks,
Adrian