memcached binary protocol adapter for akyuu
npm install akyuu-adapter-memcached-binary
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 |
// ${project}/config/default/connections.js
'use strict'
module.exports = {
myMemcached: {
adapter: 'memcached-binary',
serverUri: 'tom:[email protected]:11211'
}
}
// ${project}/models/${model}.js
'use strict'
const akyuu = require('akyuu');
const memcachedClient = akyuu.config.connection.get('myMemcached');
module.exports = redisClient;