Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Commit ae05ad5

Browse files
committed
Initial commit.
0 parents  commit ae05ad5

14 files changed

+1661
-0
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
; editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# node stuff
2+
node_modules
3+
npm-debug.log
4+
ynpm-debug.log
5+
6+
# test reports
7+
artifacts

.jshintrc

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"bitwise": false,
3+
"camelcase": false,
4+
"curly": true,
5+
"eqeqeq": true,
6+
"es3": false,
7+
"forin": true,
8+
"freeze": true,
9+
"immed": true,
10+
"indent": false,
11+
"latedef": true,
12+
"newcap": false,
13+
"nonbsp": true,
14+
"noarg": true,
15+
"noempty": false,
16+
"nonew": false,
17+
"plusplus": false,
18+
"quotmark": false,
19+
"undef": true,
20+
"unused": true,
21+
"strict": false,
22+
"trailing": true,
23+
"maxparams": false,
24+
"maxdepth": false,
25+
"maxstatements": false,
26+
"maxcomplexity": false,
27+
"maxlen": false,
28+
"asi": false,
29+
"boss": false,
30+
"debug": false,
31+
"eqnull": false,
32+
"esnext": false,
33+
"evil": false,
34+
"expr": true,
35+
"funcscope": false,
36+
"globalstrict": false,
37+
"iterator": false,
38+
"lastsemic": false,
39+
"laxbreak": false,
40+
"laxcomma": false,
41+
"loopfunc": false,
42+
"multistr": false,
43+
"proto": false,
44+
"scripturl": false,
45+
"smarttabs": false,
46+
"shadow": false,
47+
"sub": false,
48+
"supernew": false,
49+
"validthis": false,
50+
"node": true
51+
}

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- '0.12'

LICENSE

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Copyright (c) 2016, Yahoo Inc.
2+
3+
Licensed under the terms of the New BSD license. See below for terms.
4+
5+
Redistribution and use of this software in source and binary forms,
6+
with or without modification, are permitted provided that the following
7+
conditions are met:
8+
9+
* Redistributions of source code must retain the above
10+
copyright notice, this list of conditions and the
11+
following disclaimer.
12+
13+
* Redistributions in binary form must reproduce the above
14+
copyright notice, this list of conditions and the
15+
following disclaimer in the documentation and/or other
16+
materials provided with the distribution.
17+
18+
* Neither the name of Yahoo Inc. nor the names of its
19+
contributors may be used to endorse or promote products
20+
derived from this software without specific prior
21+
written permission of Yahoo Inc.
22+
23+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
24+
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25+
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
26+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
memcached-binary
2+
================
3+
4+
Binary Memcached client for Node.js
5+
6+
Compared to other Node.js memcache clients, this uses the Memcache binary API exclusively, which means you are able to store and retrieve any data, including those which are raw binary or contain newlines, which cause problems with other implementations.
7+
8+
Usage:
9+
```
10+
var MemcachedBinary = require('memcached-binary');
11+
12+
var server = 'localhost:11211'; // '/somesocketpath' or 'somehost:someport'
13+
var params = { // Various params and options
14+
use_buffers: false, // If true, always return Buffers instead of strings; defaults to false
15+
};
16+
var memcached_binary = new MemcachedBinary(server, params);
17+
18+
memcached_binary.set('key', 'value');
19+
memcached_binary.get('key', null, function(err, res) {
20+
console.log(err || res); // Will log 'value'
21+
});
22+
```
23+
24+
[Auto-generated API docs](https://yahoo.github.io/memcached-binary/docs/classes/MemcachedBinaryClient.html)
25+
26+
Code licensed under the New BSD license. See LICENSE file for terms.

index.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright 2016, Yahoo Inc.
3+
* Copyrights licensed under the New BSD License.
4+
* See the accompanying LICENSE file for terms.
5+
*/
6+
7+
module.exports = require('./libs/memcached_bclient.js');

0 commit comments

Comments
 (0)