Any reason we are using php-memcache vs php-memcached. From what I have read, they are similar but the latter is newer and better in some ways. I tried editing www/lib/framework/db.php and got it mostly working (though I should test by running memcached stats).
The main change is $this->m = new Memcache();
to $this->m = new Memcached();
Compression stuff needs to be removed cause I didn't see anything about that it php-memcached docs.
I also didn't see a connect class for php-memcached which is halted my work on this last night..