Can anybody explain session drivers to me? A search on "laravel session drivers" revealed nothing about the different types. I ask because the following tutorial suggested using an array driver for a REST API, but I don't know why. Tutorial: https://speakerdeck.com/akuzemchak/simple-api-development-with-laravel?slide=62
Here's the relevant section from app/config/session.php
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be used on
| requests. By default, we will use the lightweight native driver but
| you may specify any of the other wonderful drivers provided here.
|
| Supported: "native", "cookie", "database", "apc",
| "memcached", "redis", "array"
|
*/
'driver' => 'native',