Class: Nitro::FastCGI
- Inherits:
-
Object
- Object
- Nitro::FastCGI
- Defined in:
- lib/nitro/adapter/fastcgi.rb
Overview
FastCGI Adaptor. FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs.
Sessions
As FCGI is process based, you have can’t use the default in-memory session store. For production web sites you should use the drb session store. Moreover, there is no need for DB connection pooling in Og.
– gmosx: I always thought that the concept of FastCGI is stupid! Why don’t you use a proxy setup? (For example Apache + Mongrel) ++