sql/1.sql
author Mahlon E. Smith <mahlon@laika.com>
Mon, 31 Oct 2011 17:17:07 -0700
changeset 13 23a242d7b7fa
parent 12 191b3c25974a
permissions -rw-r--r--
1st iteration of volta actually doing something. Process the request, find the best matching rule, and rewrite the request. Without the DB queries, volta was parsing over 750k requests a second. Currently, it's down to 129.5 with 1161 rules in place. Yikes. I may need to re-evaluate some design choices here.

--- vim: set noet nosta sw=4 ts=4 ft=sql:
BEGIN;

CREATE TABLE IF NOT EXISTS requests (
	scheme VARCHAR(5)   DEFAULT NULL,
	host   VARCHAR(255) DEFAULT NULL,
	tld    VARCHAR(255) DEFAULT NULL,
	path   TEXT         DEFAULT NULL,
	port   INTEGER      DEFAULT NULL,
	ip     VARCHAR(72)  DEFAULT NULL,
	user   VARCHAR(40)  DEFAULT NULL,
	method VARCHAR(10)  DEFAULT NULL,
	rewrite_rule INTEGER REFERENCES rewrite_rules( id ) ON DELETE SET NULL ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED 
);
CREATE INDEX IF NOT EXISTS host_idx ON requests ( host );
CREATE INDEX IF NOT EXISTS tld_idx  ON requests ( tld );
CREATE INDEX IF NOT EXISTS path_idx ON requests ( path );

CREATE TABLE IF NOT EXISTS rewrite_rules (
	id     INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
	scheme VARCHAR(5)   DEFAULT NULL,
	host   VARCHAR(255) DEFAULT NULL,
	path   TEXT         DEFAULT NULL,
	port   INTEGER      DEFAULT NULL,
	redir  TINYINT NOT NULL DEFAULT 0 CHECK( redir IN (0,1,2) )
);

COMMIT;