Trying to prep for a big party this weekend and we're trying to speed run the list. Im logged in on my phone and my wife is on hers using the same login but the cart items arent syncing up live. Ive used the app forever but never tried this. Can two people share a Walmart cart in real-time?
Yeah those guys are right, it really doesnt sync fast enough to rely on for a speed run. Better to be safe so you dont end up with two of everything. I usually do this instead:
Ngl it doesnt sync live very well. I tried once and things got messy... just refresh the app manually every few minutes to stay safe and avoid double orders.
Basically you cant do it in real-time because the backend isn't built on web sockets or any data streaming protocol, so it wont push updates to another device instantly. I remember trying to sync a huge grocery run for a wedding once and the concurrency issues were a nightmare because the app relies on manual GET requests to fetch the latest cart state from the server. Tbh if you both add things at the same millisecond, the database might even throw a conflict error or just overwrite one of the items since it lacks robust optimistic locking for guest sessions.