mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
18 lines
284 B
JavaScript
18 lines
284 B
JavaScript
//var memcache = thinkRequire("MemcacheSocket");
|
|
module.exports = Cache(function(){
|
|
"use strict";
|
|
return {
|
|
init: function(){
|
|
|
|
},
|
|
get: function(){
|
|
|
|
},
|
|
set: function(){
|
|
|
|
},
|
|
rm: function(){
|
|
|
|
}
|
|
};
|
|
}); |