Reputation: 47911
If a pusher client connects to multiple channels is that still considered one client connection? Is the connection created and counted as soon as you new up a pusher client object or only when the subscribe to a channel action occurs.
Upvotes: 1
Views: 455
Reputation: 2643
The connection is recorded as soon as you instantiate the Pusher object. The number of subscriptions to channels does not affect the number of connections.
See this FAQ for more information.
Upvotes: 1