ChrisB: Cookies werden nicht korrekt gesetzt

Beitrag lesen

Hi,

Das Problem könnte bei der maximalen Größe des HTTP-Headers liegen. Die meisten Apache-Server setzen das Limit bei 8KB, mein Cookie alleine hat häufig um die 8KB.

Na das hättest du mal gleich sagen können :-)

Die ursprüngliche „Spezifikation“ für Cookies von Netscape hat schon festgelegt,

“There are limitations on the number of cookies that a client can store at any one time. This is a specification of the minimum number of cookies that a client should be prepared to receive and store.

  • 300 total cookies
  • 4 kilobytes per cookie, where the name and the OPAQUE_STRING combine to form the 4 kilobyte limit.”

Und auch RFC 2965 - HTTP State Management Mechanism sieht das noch immer ähnlich,
“user agents SHOULD provide each of the following minimum capabilities individually, although not necessarily simultaneously:
*  at least 300 cookies
*  at least 4096 bytes per cookie”

Was meint ihr?

So viel Daten sendet man generell nicht per Cookie hin und her, das verzögert den kompletten Netzwerkverkehr und wirkt sich damit schlecht auf die Gesamtperformance der Webanwendung aus.

Nutze Sessions. Punkt.

MfG ChrisB

--
RGB is totally confusing - I mean, at least #C0FFEE should be brown, right?