编辑: 黎文定 2013-04-26

String instanceid = 84ffd722-b506-4934-9025-645bb2a0997b ;

String password = 1234567q ;

//连接Redis Jedis jedis = new Jedis(host, port);

//鉴权 jedis.auth(instanceid + : + password);

/**接下来可以开始操作Redis实例,可以参考:https://github.com/xetorthio/jedis */ //设置Key jedis.set( redis , tencent );

System.out.println( set key redis suc, value is: tencent );

//获取Key String value = jedis.get( redis );

System.out.println( get key redis is: + value);

//关闭退出 jedis.quit();

jedis.close();

} catch (Exception e) { e.printStackTrace();

} } } Java 连接示例 最近更新时间:2019-01-04 10:29:23 云数据库 Redis 版权所有:腾讯云计算(北京)有限责任公司 第9 共53页 运行结果: 云数据库 Redis 版权所有:腾讯云计算(北京)有限责任公司 第10 共53页 运行前必备: 执行以下命令,安装 node-redis: npm install hiredis redis 示例代码: var redis = require( redis );

/**以下参数分别填写您的Redis实例内网IP,端口号,实例ID和密码*/ var host = 192.168.0.2 , port =

6379 , instanceid = c532952f-55dc-4c22-a941-63057e560788 , pwd = 1234567q ;

//连接Redis var client = redis.createClient(port, host, {detect_buffers: true});

// Redis连接错误 client.on( error , function(error) { console.log(error);

});

//鉴权 client.auth(instanceid + : + pwd);

/**接下来可以开始操作Redis实例 */ //设置Key client.set( redis , tencent , function(err, reply){ if (err) { console.log(err);

return;

} console.log( set key redis + reply.toString() + , value is tencent );

});

//获取Key client.get( redis , function (err, reply) { if (err) { console.log(err);

return;

} console.log( get key redis is: + reply.toString());

//程序结束关闭客户端 Node.js 连接示例 最近更新时间:2019-01-04 10:29:27 云数据库 Redis 版权所有:腾讯云计算(北京)有限责任公司 第11 共53页client.end();

});

运行结果: 云数据库 Redis 版权所有:腾讯云计算(北京)有限责任公司 第12 共53页 运行前必备: 下载并安装 redis-py. 示例代码: #!/usr/bin/env python #-*- coding: utf-8 -*- import redis #这里替换为连接的实例host和port host = '

192.168.0.195'

port =

6379 #这里替换为实例ID和实例password user='

username'

pwd='

password'

#连接时通过password参数指定AUTH信息,由user,pwd通过 : 拼接而成 r = redis.StrictRedis(host=host, port=port, password=user+'

:'

+pwd) #连接建立后就可以进行数据库操作,详情请参考:https://github.com/andymccurdy/redis-py r.set('

name'

, '

python_test'

);

print r.get('

name'

) 运行结果: Python 连接示例 最近更新时间:2019-01-04 10:29:30 云数据库 Redis 版权所有:腾讯云计算(北京)有限责任公司 第13 共53页 运行前必备: 下载并安装 hiredis. 示例代码: #include #include #include #include int main(int argc, char **argv) { unsigned int j;

redisContext *c;

redisReply *reply;

if (argc <

4) { printf( Usage: 192.168.0.195

6379 instance_id password\n );

exit(0);

} const char *hostname = argv[1];

const int port = atoi(argv[2]);

const char *instance_id = argv[3];

const char *password = argv[4];

struct timeval timeout = { 1,

500000 };

// 1.5 seconds c = redisConnectWithTimeout(hostname, port, timeout);

if (c == NULL || c->

err) { if (c) { printf( Connection error: %s\n , c->

errstr);

下载(注:源文件不在本站服务器,都将跳转到源网站下载)
备用下载
发帖评论
相关话题
发布一个新话题