Socket
Book a DemoInstallSign in
Socket

rapid-memcache

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rapid-memcache

Memcache implemention for rapidjs data access layer

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

RAPID-MEMCACHE

node.js Memcached 客户端

###安装

npm install rapid-memcache

###使用

var cache = require('../').instance({
    host: '10.0.0.222', // default is '127.0.0.1'
    port: 11211, // default is 11211
    user: "username",
    password: 'password'
});
cache.set('foo', 'bar').then(function(){
    cache.get('foo').then(function(ret){
        ...
    });
});

更多API详情参考 clouda+

Keywords

clouda+

FAQs

Package last updated on 28 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts