commerce: update session after modifying shopping cart content
when using a RAM cache for session, we can modify the temp objects directly and the changes are kept, because the same object kept in RAM is accessed by subsequent requests, but when using memcached every request get a different object, so we need to put back the object in the session so that the new version is saved in cache, so that subsequent requests use the modified object
Showing
Please register or sign in to comment