replace session management routines with memcached

This commit is contained in:
Jeremy Newman
2008-02-08 13:15:54 -06:00
parent 86ced92c4c
commit 7666f6d0da
7 changed files with 115 additions and 162 deletions

View File

@@ -13,7 +13,6 @@ drop table if exists appData;
drop table if exists appBundle;
drop table if exists appVotes;
drop table if exists appNotes;
drop table if exists sessionMessages;
/*
@@ -176,15 +175,3 @@ create table appNotes (
key(noteId)
);
/*
*
*/
create table sessionMessages (
id int not null auto_increment,
time datetime,
sessionId varchar(32),
message text,
key(id),
index(sessionId)
);