You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation uses a queue per subscription.
When a session initiates many subscriptions and doesn't unsubscribe
properly, it creates lots of work threads on the server.
Invocation queue is implemented as a thread pool.
Per-subscription queue is a pool that uses a single thread.
Per-session queue will probably need more than one thread (should be adjustable).
The text was updated successfully, but these errors were encountered:
The current implementation uses a queue per subscription.
When a session initiates many subscriptions and doesn't unsubscribe
properly, it creates lots of work threads on the server.
Invocation queue is implemented as a thread pool.
Per-subscription queue is a pool that uses a single thread.
Per-session queue will probably need more than one thread (should be adjustable).
The text was updated successfully, but these errors were encountered: