Since HTTP driven applications are stateless, sessions provide a way to store information about the user across multiple requests. That user information is typically placed in a persistent store \/ backend that can be accessed from subsequent requests.<\/p>\n

Laravel ships with a variety of session backends that are accessed through an expressive, unified API. Support for popular backends such as Memcached<\/a>, Redis<\/a>, and databases is included.<\/p>\n

Configuration<\/a><\/h3>\n

Your application's session configuration file is stored at config\/session.php<\/code>. Be sure to review the options available to you in this file. By default, Laravel is configured to use the database<\/code> session driver.<\/p>\n

The session driver<\/code> configuration option defines where session data will be stored for each request. Laravel includes a variety of drivers:<\/p>\n

\n