Skip to content

akyuujs/akyuu-adapter-memcached-binary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

akyuu-adapter-memcached-binary

memcached binary protocol adapter for akyuu

Installation

npm install akyuu-adapter-memcached-binary

Configuration

Make sure you have a connections section in your configuration file(s).
And its adapter should be memcached-binary.

option required remark
adapter must be memcached-binary
serverUri e.g. username:password@host:port

Usage

Config File

// ${project}/config/default/connections.js

'use strict'

module.exports = {
    myMemcached: {
        adapter: 'memcached-binary',
        serverUri: 'tom:xafqfdagqqv@127.0.0.1:11211'
    }
}

Model File

// ${project}/models/${model}.js

'use strict'

const akyuu = require('akyuu');
const memcachedClient = akyuu.config.connection.get('myMemcached');

module.exports = redisClient;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published