J
Jeenu
I am using asp.net to build a scalable application.
I am using data caching and I want to know whether the following
situation can arise
If concurrent users check the cache and finds that data is not there
then they all will try to get the data from the database which is not
required .
I think this is a problem and need solve it
I want to know if there is a way to allow only one user to access the
database and add it to the cache while others wait and gets the data
from the cache. So the database acess is minimum
..
I am using data caching and I want to know whether the following
situation can arise
If concurrent users check the cache and finds that data is not there
then they all will try to get the data from the database which is not
required .
I think this is a problem and need solve it
I want to know if there is a way to allow only one user to access the
database and add it to the cache while others wait and gets the data
from the cache. So the database acess is minimum
..