The Twelve-Factor App - 0 views
-
PHP processes run as child processes of Apache, started on demand as needed by request volume.
-
Java processes take the opposite approach, with the JVM providing one massive uberprocess that reserves a large block of system resources (CPU and memory) on startup, with concurrency managed internally via threads
-
Processes in the twelve-factor app take strong cues from the unix process model for running service daemons.
- ...3 more annotations...