Hi,
I’d like to know if when you put something in auth0 cache is tight on the event triggering it or shared across every call?
The point is the following, I need to cache information in a given key but need this key to be isolated from another call and strongly linked to the event which triggered (maybe it’s already the case out of the box but just want to be sure).
So in an action let’s say I put api.cache.set(‘some_key’, dynamic_value_based_on_event) and an event triggers this action, what happen if another event triggers the same action, would the key be shared or not?
If it is shared how can I make sure the key is unique and related to the event id ? I tried that but it didn’t work:
api.cache.set(event.linked_id, some_dynamic_value)