How many users can SPChat handle simultaneously?

Since SPChat uses Server-Sent Events (SSE) for real-time delivery, every active user standardly keeps a permanent connection open to the server. Each connection occupies one PHP process (PHP-FPM worker) for up to 50 seconds. The capacity therefore directly depends on your web hosting environment:

Resource-Saving Alternative: If your webspace resources are limited or your host's PHP process limits are reached, the chat can easily be switched from SSE to classic HTTP polling in the configuration. This mode polls messages at short intervals, does not block permanent PHP processes, and massively reduces the server load.