Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Firstly, I suggest you don't worry about this issue. There is AMPLE room to serialize tons of identifiers to. </p> <p>Secondly it's not stored by <code>web-server</code> but by <code>web-domain</code> — e.g., <code>www.google.com</code> and not the 100's of different physical servers that serve the Google domain. </p> <p>Thirdly if you do have to worry know that there are <strong>two possible cookie headers</strong>. The sizes of these cookie headers are determined by the browser software limits.</p> <p><strong>Design Discussion</strong></p> <p>What you don't want to use the cookie header for is sending details about a client's session. E.g., don't try to stuff the email a client is typing into a cookie if you are building an email front-end. Instead you would send the client a cookie that represents his identity+session: you store all sessions data against this identity. You can store tens of identifiers (4–16 bytes) per cookie header and no one needs more than say 4 of these. The cookies data (as an integer) tends to be encoded to <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow noreferrer">base64</a> which increases the byte-count.</p> <p><strong>Performance</strong></p> <p>Your browser sends a plethora of headers to a web-server. The cookie is just another 100-1000 bytes (mostly closer to 100). At both extremes it takes only a fraction of time to send these to the web-server — when placed into context of course. You should keep in mind that the web is built on text based protocols.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload