Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

azuki-trusty / azk   deb

Repository URL to install this package:

Version: 0.5.1 

/ usr / lib / azk / node_modules / memcached / examples / simple_get_binary.js

var	nMemcached = require( '../' ),
	fs = require('fs'),
	memcached;

// connect to our memcached server on host 10.211.55.5, port 11211
memcached = new nMemcached( "10.211.55.5:11211" );

fs.readFile( __dirname + '/binary/hotchicks.jpg', function( err, data ){
	if( err ) console.error( err );
	
	memcached.get( "hello_binary", function( err, result ){
		if( err ) console.error( err );
		
		console.log( result.toString() == data.toString() );
		memcached.end(); // as we are 100% certain we are not going to use the connection again, we are going to end it
	});	
});