I tried to write a simple long polling script today.
I have a problem where the server gets blocked while the polling is going on. I found this:
https://www.xphp.info/long-polling-php-sessions/
telling me to have the session not lock the server.
session_write_close();
Closing the session did not really help. Does Phalcon ignore this command, does phalcon lock any other stuff on the server?
I'm on an xampp(32bit) windows 7 x64.