Represents a request scope cache, which is intended to hold data for the life of a request.
A request is a unit-of-work as managed by the host application. Examples may be be a web request,
a scheduled job or a background task).
Notes
null keys and values are NOT supported
- keys and values are stored by reference
-
Data held in a request scope cache is cleared at the end of the request, and will
never be accessible again. It is not possible to share a request scope cache across
multiple requests (use a
JvmCache or ExternalCache instead).