Cache VS Session VS cookies?

前端 未结 8 750
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-02 04:09

What are the do\'s and don\'ts about Cache VS Session VS Cookies?

For example:
I\'m using Session variables a lot and sometimes have problems in a booking-applic

相关标签:
8条回答
  • 2020-12-02 04:32
    • Cookie is a piece of information shared between co-operating pieces of software, by storing client-specific information on the client's machine and later retrieved to obtain the state information.

    • chose the term "cookie" as "a cookie is a well-known computer science term that is used when describing an opaque piece of data held by an intermediary". The term opaque here implies that the content is of interest and relevance only to the server and not the client. The browser will automatically include the cookie in all its subsequent requests to the originating host of the cookie. A cookie has a name and a value, and other attribute such as domain and path, expiration date, version number, and comments. for more

    Cookie Version:

    Cookie: cookie-name=cookie-value; Comment=text; Domain=domain-name; Path=path-name; Max-Age=seconds; Version=1; Secure
    
    • Server-side session data can store large data and a client-side cookie data are limited in size sent from a website to server, cookies usually contains reference code by this saving data transfer size. Session closes as soon as browser closed, but cookies are exist longer. Browser sends a session ID to the server as a URL param, cookie, or even HTTP headers.

    • Cache is a hardware or software component that stores data so future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation, or the duplicate of data stored elsewhere.

    0 讨论(0)
  • 2020-12-02 04:36

    First thing you must know! cookies are used by session! The server knows who is your user thanks to the cookie which is exchanged between the client and server every request (this works with HTTP headers set-cookie and cookie).

    The real question is:

    • If you want to store user information during the navigation, then you should use session.

    • If your client doesn't support cookies, then you can decide to store a cookie inside each request, encoded in the URL (the server will use the URL instead of the cookie to find the right session for the request).

    Then consider where you want to store your session:
    If your site must have high disponibility and high performance, then you must not store session inside the process but inside a database. This way you will be able to share the work among several web server. But you will loose in simplicity (because objects you store in your session must be serializable), and you have one more round trip between your webserver and your database server.

    0 讨论(0)
  • 2020-12-02 04:37

    Web is by nature disconnected model and none of the options mentioned (Session, Application, Cache, ...) are reliable enough. Session will timeout, worker process recycles, etc.

    If you really need to store the users progress, reliably and through extended periods, the database is your only solution. If you have users profile (if the user must log in), then it's straightforward. If not, generate a unique Id, store it in the cookie (or URL) and track the user based on that identification.

    Just make sure the Id is encrypted and then base64 encoded string and not just a numeric value.

    EDIT:

    After your additional explanation in the original question and comment from Mehrdad Afshari, good solution for you would be to use Session but set the storage to Sql Server instead of InProc.

    Here's more details and instructions how to set it up: http://msdn.microsoft.com/en-us/library/ms178586.aspx

    Have in mind that you will STILL have the session timeouts, but they will survive application pool recycles, even server restarts.

    If you truly need a permanent storage, custom solution with the database, as I originally outlined is the only solution.

    0 讨论(0)
  • 2020-12-02 04:39

    State management is a critical thing to master when coming to Web world from a desktop application perspective.

    • Session is used to store per-user information for the current Web session on the server. It supports using a database server as the back-end store.
    • Cookie should be used to store per-user information for the current Web session or persistent information on the client, therefore client has control over the contents of a cookie.
    • Cache object is shared between users in a single application. Its primary purpose is to cache data from a data store and should not be used as a primary storage. It supports automatic invalidation features.
    • Application object is shared between users to store application-wide state and should be used accordingly.

    If your application is used by a number of unauthenticated users, I suggest you store the data in a cookie. If it requires authentication, you can either store the data in the DB manually or use ASP.NET profile management features.

    0 讨论(0)
  • 2020-12-02 04:46

    I was always confused between LocalStorage, SessionStorage and Cookie, but not anymore.

    Just link the words are self explainable what they suppose to do.

    LocalStorage: Local Storage, what does that mean, just thing you don't know anything about technology, but by the itself you can guess. It is some storage which stores data locally.

    that what it is.

    IT stores data in Browser without any expiration until user clear it through JavaScript code or Clear browser cache.

    Session Storage: It seems like it also stores data but related to a session then how different it is from localStorage?

    The main difference is your session storage data will be deleted once the session is finish or browser tab is closed or the browser is closed.

    You can just try in browser console by setting

    localStorage.setItem('name' , 'alex')
    sessionStorage.setItem('session','seesion value')
    

    and then close tab and open again, you can still find localStorage data but not sessionStorage data.

    Cookie: So this is totally different from the above two. A cookie generally used for the server-side purpose.

    • Stores data that has to be sent back to the server with subsequent requests.
    • Its expiration varies based on the type and the expiration duration can be set from either server-side or client-side (normally from server-side).
    • Cookies are primarily for server-side reading (can also be read on client-side), localStorage and sessionStorage can only be read on client-side.
    • Size must be less than 4KB.
    • Cookies can be made secure by setting the httpOnly flag as true for that cookie. This prevents client-side access to that cookie
    0 讨论(0)
  • 2020-12-02 04:47

    You should not use the Cache-object to cache session data, for the cache is shared between all users. Instead you could use Asp.Net Profile properties to store your data or you could add an event handler to the Session_End event and store the data if the user leaves the computer for too long.

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