What is the correct way to share data from a service without re-retrieving the data each time?
For example, I have created a getCustomers service. But I want to use the data in both a header controller, and in the controller for a particular page.
At present this results in separate calls to the service each time - but I would like to just retrieve the data once and make it available globally.
1 Answer(s)
-
0
Hi,
As you probably know, this is not a problem of ABP, and a general MVC question. But you may want to learn a good practice from us, so I will reply it :)
You can use HttpContext.Items collection in a web request. You can add item to the collection and get later in same web request. So, it's like a per request cache.
So, you check if item exists, get from db if not and fill it.