Does phalcon blocks when
$this->session->start()
is called?
because i tried
$this->session->start();
$this->session->set('test', 1);
session_write_close();
$this->session->set('test', 2);
echo $this->session->get('test') //2;
the test
was overwritten even after the session_write_close
which closes the write session to prevent blocking