HttpApplicationState - Why does Race condition exist if it is thread safe?

醉酒当歌 提交于 2019-12-30 11:20:53

问题


I just read an article that describes how HttpApplicationState has AcquireRead() / AcquireWrite() functions to manage concurrent access. It continues to explain, that in some conditions however we need to use an explict Lock() and Unlock() on the Application object to avoid a Race condition.

I am unable to understand why a race condition should exist for Application state if concurrent access is implicitly handled by the object.

Could someone please explain this to me ? Why would I ever need to use Application.Lock() and Application.Unlock() ? Thank You !


回答1:


The AcquireRead and AcquireWrite methods are in the internal HttpApplicationStateLock class, so you don't use them yourself. They synchronise access, but only for a single read or write. From your code you use the Lock and Unlock methods if you need to synchronise access.

You would typically need to synchonise the access if you are changing something that is not a single read or write, like adding two application items that rely on each other, or first checking if an item exist and then add it:

Application.Lock()
if (Application["info"] == null) {
   Application.Add("info", FetchInfoFromDatabase());
}
Application.Unlock();



回答2:


HttpApplicationState - where the globally access variables those are visible to all the

users who are using the application. So in order to avoid the race condition while changing

the value of the variables. We need some precautionary, thats why we are using

Application.Lock() and after the job done releasing the same variable to others in the

queue using Application.Unlock()

Application.Lock()
Application("VisitorCount") = Convert.ToInt32(Application("VisitorCount")) + 1
Application.UnLock()


来源:https://stackoverflow.com/questions/1524922/httpapplicationstate-why-does-race-condition-exist-if-it-is-thread-safe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!