ReactPHP http server for each user, Is this a good idea?
In my application:
- Each logged on user sends and receives data from server. In average one request per second.
- After server response, the server have some extra work to do, which is related to specific user.
I can simply build new ReactPHP http server for each user who logs, and release the server after the user log out.
Is this will work? Am i missing something ?