HTTP Concepts

Session

A server-side mechanism for maintaining state across multiple HTTP requests from the same client. Since HTTP is stateless, sessions use a unique identifier (typically stored in a cookie) to associate requests with stored data. Sessions track authentication state, shopping carts, and user preferences. Session expiration and invalidation are critical for security.

関連プロトコル

関連項目