Javascript – Redis relational data cache invalidation problem
I’m facing a cache invalidation problem in Redis, particularly with relational data. For example, I have a User object: { "id": 1, "name": "John" } And a UserClass object: { "user_id": 1, "class_id": 3 } I have an API that…