Where does Magento 2 save session files?
According to the documentation, it is possible to save in the database, in redis, in memcache or in files, but in the default installation it looks like this.
‘session’ => [
‘save’ => ‘files’ ],
I checked the var/session folder and there is nothing, not even in the database (session table).
Does magento save to temp, browser cache, cookie or elsewhere?
How do I identify?