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