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
* exposes the cache-wrapped method along with some primitives which enable extending the caching logic
11
-
*
12
-
* specifically
13
-
* - exposes a way to `invalidate` the cache, for a given input (e.g., to support external triggers for invalidation)
14
-
* - exposes a way to `update` the cache, for a given input (e.g., to support write-through caching and optimistic caching)
15
-
*
16
-
* relevance
17
-
* - when wrapping logic to cache the user is able to specify several caching options (e.g., key serialization method, value serialization method, etc)
18
-
* - in order to define their own `invalidation` and `update` methods, without this function, the user would need to access these caching options per function elsewhere
19
-
* - this function makes it easy to utilize and extend cache invalidation + update commands for the wrapped logic, by managing the references to the caching options on behalf of the user
* exposes the cache-wrapped method along with some primitives which enable extending the caching logic
51
+
*
52
+
* specifically
53
+
* - exposes a way to `invalidate` the cache, for a given input (e.g., to support external triggers for invalidation)
54
+
* - exposes a way to `update` the cache, for a given input (e.g., to support write-through caching and optimistic caching)
55
+
*
56
+
* relevance
57
+
* - when wrapping logic to cache the user is able to specify several caching options (e.g., key serialization method, value serialization method, etc)
58
+
* - in order to define their own `invalidation` and `update` methods, without this function, the user would need to access these caching options per function elsewhere
59
+
* - this function makes it easy to utilize and extend cache invalidation + update commands for the wrapped logic, by managing the references to the caching options on behalf of the user
0 commit comments