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
A symfony2 bundle which allows applications to reduce overheads by exposing symfony's Request-Response structure to a Fast CGI daemon.
10
+
11
+
## Introduction
12
+
13
+
Using this bundle, symfony2 applications can stay alive between HTTP requests whilst operating behind the protection of a FastCGI enabled web server.
14
+
15
+
## Running the Daemon
16
+
17
+
To start a the daemon listening on port 5000 use the command below. Production mode is selected here for the purposes of generating accurate benchmarks. We do not recommend that you use this package in production mode as it is not yet stable.
18
+
19
+
Check the FastCGI documentation for your chosen web server to find out how to configure it to use this daemon as a FastCGI application.
If you are using apache, you can configure the FastCGI module to launch and manage the daemon itself. For this to work you must omit the "--target" parameter from the command and the daemon will instead listen for incoming connections on FCGI_LISTENSOCK_FILENO (STDIN).
26
+
27
+
## Current Status
28
+
29
+
This daemon is currently in early development stages and not considered stable. A
0 commit comments