0.0.9 • Published 8 years ago

nodejs-redis v0.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Haxe Node.js bindings for Redis

Haxe bindings for the Node.js Redis client https://github.com/mranney/node_redis.

Usage:

var redisClient = RedisClient.createClient(6379, "192.168.59.103");
var key = "TESTKEY1_" + Math.floor(Math.random() * 100000);
var value = "value1";

redisClient.set(key, value, function(err, success) {
	if (err != null) {
		trace('Err: ' + err);
	} else {
		redisClient.get(key, function(err, result) {
			if (err != null) {
				trace('Err: ' + err);
			} else {
				trace('Success: ' + (result == value));
				redisClient.quit();
			}
		});
	}
});
0.0.9

8 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago