> Hi All - My Phirehose app is running like a dream. I am now in a position
> where I need to add new IDs of people to follow. I can't see to get
> Phirehose to refresh this list from a MySQL table whilst staying "live" --
> I don't want to stop and start Phirehose every time I add a new user!
You have to reconnect - the list of users to follow is sent at the start
of the streaming request, and after that you receive data.
(Of course, the easy to reconnect is to restart your script; but I'm
fairly sure you can do a reconnect without having to stop your script.)
Also bear in mind connection limits: if you are getting new users every
few seconds, batch them up, so you don't have to reconnect more than
once every few minutes.
Darren