I am learning about cookies, and I wonder about browser support:
For each domain/web site, how many cookies may be sent to a browser, and of what size?
If multiple cookies are sent and stored, does that affect performance?
|
I am learning about cookies, and I wonder about browser support:
| ||||
feedback
|
|
Different browsers have different size limits on cookies. Some general guidelines:
A page that lists the actual in-practice cookie limits for several browsers:
1 can be set between 0 and 65535 Cookies are not saved on a server basis but on a domain basis (a server may host many domains or the opposite a server farm may be serving a single domain). In general, I would avoid saving lots of information in cookies, as the data gets sent to and from the browser on every request. As you suggest in your question, this can have a effect on performance. Usually one stores small amounts of data in the cookie, mostly used to identify the user/session so more data can be picked up from a database or another resource local to the web server. | |||||
feedback
|