Python 官方文档:入门教程 => 点击学习
今天小编给大家分享一下python如何实现各种中间件的连接的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。连接数据库Redis
今天小编给大家分享一下python如何实现各种中间件的连接的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。
Redis连接
import redis"""连接redis ConnectionPool 方式连接"""def connRedis(self): pool=redis.ConnectionPool(host='172.16.1.2',passWord='',db=2, port=6379) #按具体情况填写参数 r=redis.StrictRedis(connection_pool=pool) r.set("test_name","admin") print(r.get('test_name'))
Python 操作redis 集群 用redis模块不行,需要导入模块
#!/usr/bin/env python#coding:utf-8 from rediscluster import StrictRedisClusterimport sys def redis_cluster(): redis_nodes = [{'host':'192.168.1.2','port':6378}, {'host':'192.168.1.2','port':6380}, {'host':'192.168.1.2','port':6381}, {'host':'192.168.1.2','port':6382}, {'host':'192.168.1.2','port':6383}, {'host':'192.168.1.2','port':6384}, {'host':'192.168.1.2','port':6385} ] try: redisconn = StrictRedisCluster(startup_nodes=redis_nodes) except Exception,e: print "Connect Error!" sys.exit(1) redisconn.set('name','admin') print "name is: ", redisconn.get('name') redis_cluster()
#!/usr/bin/env python# -*- coding:utf-8 -*-import redisfrom redis.sentinel import Sentinel# 连接哨兵服务器(主机名也可以用域名)sentinel = Sentinel([('172.31.0.2', 5001), ('172.31.0.3', 5001), ('172.31.0.4', 5001), ('172.31.0.5', 5001) ], Socket_timeout=0.5)# 获取主服务器地址master = sentinel.discover_master('mymaster')print(master)# 输出:('172.31.0.2', 5001)# 获取从服务器地址slave = sentinel.discover_slaves('mymaster')print(slave)# 输出:[('172.31.3', 5001), ('172.31.0.4', 5001), ('172.31.0.5', 5001)]# 获取主服务器进行写入master = sentinel.master_for('mymaster', socket_timeout=0.5, password='redis_auth_pass', db=15)w_ret = master.set('foo', 'bar')# 输出:True# # 获取从服务器进行读取(默认是round-roubin)slave = sentinel.slave_for('mymaster', socket_timeout=0.5, password='redis_auth_pass', db=15)r_ret = slave.get('foo')print(r_ret)# # 输出:bar
以上就是“Python如何实现各种中间件的连接”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网Python频道。
--结束END--
本文标题: Python如何实现各种中间件的连接
本文链接: https://lsjlt.com/news/330157.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0