My requirements of Zend\Session are pretty straightforward and my first access to it is with the following line of code:
$this->session = new Container('MySession');
My question is, where (by default) is this stored? In the case of ZF1, it was very simple: there was a file for each session under /data/session. The file name was a cookie id and you could 'cat' the file to see what was going on.
What's the buzz with ZF2? I've had a look through Zend\Session\Config files but I'm still in the dark.