Static variables in web applications

前端 未结 2 848
借酒劲吻你
借酒劲吻你 2021-01-02 04:36

Can I use static variables in my web application ? what are the alternatives to static ? When I use static variables in pages and more than one user use the application, it

相关标签:
2条回答
  • 2021-01-02 05:03

    Consider storing your shared variables in the HttpApplication object or in the Cache object.

    However, if you are trying to store values for each user separately, you should store those values in a Session variable.

    Static variables inside Asp.Net are shared in the memory space of the w3svc.exe process and are NOT thread-safe. They can be accessed and modified by any user of the application. This could lead to unwanted modifications, unless you write your own lock mechanism around the storage of those values.

    You should try a syntax like:

    Application["KEY"] = value;
    

    to store shared application-wide data and

    Session["KEY"] = value;
    

    to store data on a per-user basis

    You can use the WebCache object to store data in the web server's memory with expiration conditions. Syntax for that looks similar to:

    Page.Cache.Insert("KEY", "VALUE", null, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, CacheItemPriority.Normal, null);
    

    More on the syntax of managing the WebCache object can be found at:

    http://msdn.microsoft.com/en-us/library/system.web.caching.cache.aspx

    0 讨论(0)
  • 2021-01-02 05:11

    Just to add to what @Jeff Fritz has said, an IIS application creates an AppDomain in which your assemblies are loaded. Just like the rules of a normal windows application, if a class such as

    public static class Something
    {
        public static string SomeString { get; set; }
    }
    

    ...then only a single Something.SomeString property is available per AppDomain. The W3SVC process manages the AppDomain, but the is no guaruntee of thread safety (as an AppDomain can be service multiple requests). If you are using read-only static properties, it's probably fine (such as reading config values). If you are making mutable properties that change through the lifetime of a request, its better to use one of the storage mechanisms detailed in other questions here.

    0 讨论(0)
提交回复
热议问题