I know that in Laravel 4 we can configure several ways to save session data. They are the optional storage mechanisms of session.
Among them, we can select memcached
, database
, cookie
, apc
and file
, which by the way are very common.
However there is also an option called array
.
If you select this option array
, what will Laravel 4 do internally to save session data?
I mean, I fully understand the type of operation that will be performed on the other options, but that did not help.