JsMemcached.js: JavaScript Jaxer Client

Rakesh Pai has created a Jaxer JavaScript client for Memcached.
Once you load the file you simple configure the main object (change the file rather than calling .config(…) which would make more sense):
PLAIN TEXT
JAVASCRIPT:

 

JsMemcached.set(”keyName”, “Value here, as long as you want”);

 

JsMemcached.get(”keyName”);

 

JsMemcached.close(); // no open() as it is lazily done on your behalf

 

Continue reading over at Ajaxian...

Leave a Reply