Index: benchmark/io/http/filecache.cfa
===================================================================
--- benchmark/io/http/filecache.cfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/filecache.cfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -209,4 +209,9 @@
 
 [int *, int] filefds(int extra) {
+	if(!options.file_cache.path) {
+		int * data = alloc(extra);
+		return [data, 0];
+	}
+
 	if(!file_cache.entries) {
 		abort("File cache not filled!\n");
Index: benchmark/io/http/main.cfa
===================================================================
--- benchmark/io/http/main.cfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/main.cfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -80,10 +80,12 @@
 	//===================
 	// Parse args
-	const char * path = parse_options(argc, argv);
+	parse_options(argc, argv);
 
 	//===================
 	// Open Files
-	sout | "Filling cache from" | path;
-	fill_cache( path );
+	if( options.file_cache.path ) {
+		sout | "Filling cache from" | options.file_cache.path;
+		fill_cache( options.file_cache.path );
+	}
 
 	//===================
@@ -147,5 +149,5 @@
 		}
 
-		if(options.file_cache.fixed_fds) {
+		if(options.file_cache.path && options.file_cache.fixed_fds) {
 			register_fixed_files(cl, fds, pipe_off);
 		}
@@ -184,34 +186,38 @@
 				}
 
-				sout | "Notifying connections";
+				sout | "Notifying connections..." | nonl; flush( sout );
 				for(i; options.clopts.nworkers) {
 					workers[i].done = true;
 					cancel(workers[i].cancel);
 				}
-
-				sout | "Shutting down socket";
+				sout | "done";
+
+				sout | "Shutting down socket..." | nonl; flush( sout );
 				int ret = shutdown( server_fd, SHUT_RD );
-				if( ret < 0 ) { abort( "shutdown error: (%d) %s\n", (int)errno, strerror(errno) ); }
+				if( ret < 0 ) {
+					abort( "shutdown error: (%d) %s\n", (int)errno, strerror(errno) );
+				}
+				sout | "done";
 
 				//===================
 				// Close Socket
-				sout | "Closing Socket";
+				sout | "Closing Socket..." | nonl; flush( sout );
 				ret = close( server_fd );
 				if(ret < 0) {
 					abort( "close socket error: (%d) %s\n", (int)errno, strerror(errno) );
 				}
-				sout | "Stopping connection threads..." | nonl;
+				sout | "Stopping connection threads..." | nonl; flush( sout );
 			}
 			sout | "done";
 
-			sout | "Stopping protocol threads..." | nonl;
+			sout | "Stopping protocol threads..." | nonl; flush( sout );
 			deinit_protocol();
 			sout | "done";
 
-			sout | "Stopping processors..." | nonl;
+			sout | "Stopping processors..." | nonl; flush( sout );
 		}
 		sout | "done";
 
-		sout | "Closing splice fds..." | nonl;
+		sout | "Closing splice fds..." | nonl; flush( sout );
 		for(i; pipe_cnt) {
 			ret = close( fds[pipe_off + i] );
@@ -223,5 +229,5 @@
 		sout | "done";
 
-		sout | "Stopping processors..." | nonl;
+		sout | "Stopping processors..." | nonl; flush( sout );
 	}
 	sout | "done";
@@ -229,6 +235,8 @@
 	//===================
 	// Close Files
-	sout | "Closing open files..." | nonl;
-	close_cache();
-	sout | "done";
-}
+	if( options.file_cache.path ) {
+		sout | "Closing open files..." | nonl; flush( sout );
+		close_cache();
+		sout | "done";
+	}
+}
Index: benchmark/io/http/options.cfa
===================================================================
--- benchmark/io/http/options.cfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/options.cfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -9,7 +9,9 @@
 }
 
+#include <fstream.hfa>
 #include <kernel.hfa>
 #include <parseargs.hfa>
 
+#include <stdlib.h>
 #include <string.h>
 
@@ -18,4 +20,5 @@
 
 	{ // file_cache
+		0,     // path
 		0,     // open_flags;
 		42u,   // hash_seed;
@@ -34,5 +37,5 @@
 		1,     // nprocs;
 		1,     // nworkers;
-		0,     // flags;
+		{},     // params;
 		false, // procstats
 		false, // viewhalts
@@ -41,5 +44,5 @@
 };
 
-const char * parse_options( int argc, char * argv[] ) {
+void parse_options( int argc, char * argv[] ) {
 	bool subthrd = false;
 	bool eagrsub = false;
@@ -97,7 +100,8 @@
 
 	if( left[0] != 0p ) {
-		abort("Too many trailing arguments!\n");
+		serr | "Too many trailing arguments!";
+		exit(EXIT_FAILURE);
 	}
 
-	return path;
+	options.file_cache.path = path;
 }
Index: benchmark/io/http/options.hfa
===================================================================
--- benchmark/io/http/options.hfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/options.hfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -11,4 +11,5 @@
 
 	struct {
+		const char * path;
 		int open_flags;
 		uint32_t hash_seed;
@@ -36,3 +37,3 @@
 extern Options options;
 
-const char * parse_options( int argc, char * argv[] );
+void parse_options( int argc, char * argv[] );
Index: benchmark/io/http/protocol.cfa
===================================================================
--- benchmark/io/http/protocol.cfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/protocol.cfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -26,4 +26,5 @@
 	"HTTP/1.1 400 Bad Request\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
 	"HTTP/1.1 404 Not Found\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
+	"HTTP/1.1 405 Method Not Allowed\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
 	"HTTP/1.1 408 Request Timeout\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
 	"HTTP/1.1 413 Payload Too Large\nServer: HttoForall\nDate: %s \nContent-Type: text/plain\nContent-Length: 0 \n\n",
@@ -37,4 +38,5 @@
 	400,
 	404,
+	405,
 	408,
 	413,
Index: benchmark/io/http/protocol.hfa
===================================================================
--- benchmark/io/http/protocol.hfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/protocol.hfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -7,4 +7,5 @@
 	E400,
 	E404,
+	E405,
 	E408,
 	E413,
Index: benchmark/io/http/worker.cfa
===================================================================
--- benchmark/io/http/worker.cfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
+++ benchmark/io/http/worker.cfa	(revision b57db739eb7065b1c57bf4855476beaeb6654ca6)
@@ -97,4 +97,14 @@
 			}
 
+			if( !options.file_cache.path ) {
+				if( options.log ) {
+					sout | "=== File Not Found (" | nonl;
+					write(sout, file, name_size);
+					sout | ") ===";
+				}
+				answer_error(fd, E405);
+				continue REQUEST;
+			}
+
 			// Get the fd from the file cache
 			int ans_fd;
@@ -104,7 +114,9 @@
 			// If we can't find the file, return 404
 			if( ans_fd < 0 ) {
-				sout | "=== File Not Found (" | nonl;
-				write(sout, file, name_size);
-				sout | ") ===";
+				if( options.log ) {
+					sout | "=== File Not Found (" | nonl;
+					write(sout, file, name_size);
+					sout | ") ===";
+				}
 				answer_error(fd, E404);
 				continue REQUEST;
