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
Currently we attempt to connect, then if that fails, launch the binary. But that means we have to open the connection on every request, and that if the binary fails launching, we'll continually attempt to spawn it causing overhead.
A likely approach is to use the new extension to hold a persistent socket open, rather than attempting to manage it solely from PHP code.
The text was updated successfully, but these errors were encountered:
Currently we attempt to connect, then if that fails, launch the binary. But that means we have to open the connection on every request, and that if the binary fails launching, we'll continually attempt to spawn it causing overhead.
A likely approach is to use the new extension to hold a persistent socket open, rather than attempting to manage it solely from PHP code.
The text was updated successfully, but these errors were encountered: