When accessing a directory, the various available index methods may also have a different impact on usage of OS resources (
RAM,
CPU time, etc.) and thus on web server performances. Proceeding from
fastest to
slowest method, here is the list: • using a static index file, e.g.: index.html, etc.; • using a web server feature usually named
autoindex (when no index file exists) to let web server autogenerate directory listing by using its internal module; • using an interpreted file read by web server internal program interpreter, e.g.: index.php; • using a CGI executable and compiled program, e.g.: index.cgi. ==References==