MonkeyBonkey
MonkeyBonkey

Reputation: 47911

how does pusher count connections for pricing?

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

Answers (1)

Will Sewell
Will Sewell

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

Related Questions