CGI v/s Servlet
Last updated
Last updated
CGI(Common Gateway Interface) Web Server, based on perl scripting.
Process based framework, in which a process is spawned, rather than a thread.
Once the response is served the process that generated the response is killed.
Process is heavy weight and cannot be reused, hence slow.