Y
Hacker News
new
|
ask
|
show
|
jobs
by
biasedstudy
5317 days ago
Having a lightweight, standalone executable with quick start up time is still a major win.
1 comments
cageface
5317 days ago
What about caching database connections? Opening a new connection on every request can be very slow, particularly for Oracle.
link
javadyan
5317 days ago
One may consider using FastCGI to avoid the costs associated with starting a new process with each request.
link