You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the session-store-with-clerk example, you have 2 Redis storages for the cart, usercart:${userId} (cart as a set) and user:${userId} (cart hash) and then for each cart action you execute 2 different cart functions, for example:
What is the point of having 2 Redis stores for the cart, one a hash and one a set? Why is there a usercart:userId store and a user:userId store? Your actually tutorial on your website only references the user:userId store as a hash, so what purpose does the other store serve?
The text was updated successfully, but these errors were encountered:
In the session-store-with-clerk example, you have 2 Redis storages for the cart, usercart:${userId} (cart as a set) and user:${userId} (cart hash) and then for each cart action you execute 2 different cart functions, for example:
What is the point of having 2 Redis stores for the cart, one a hash and one a set? Why is there a usercart:userId store and a user:userId store? Your actually tutorial on your website only references the user:userId store as a hash, so what purpose does the other store serve?
The text was updated successfully, but these errors were encountered: