• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共46篇

    python3.X - Web - Flask1.1.1

关闭

返回栏目

关闭

返回python3.X - Web - Flask1.1.1栏目

26 - Flask - 扩展 - redis - pipeline批量

作者:

贺及楼

成为作者

更新日期:2023-11-21 22:33:32

Flask - 扩展 - redis - pipeline批量

安装

  1. pip install redis

方式一:直接使用

  1. import redis
  2. r = redis.Redis(host='127.0.0.1', port=6379, db=1, password=None, decode_responses=True)

方式二:连接池使用

  1. import redis
  2. pool = redis.ConnectionPool(host='127.0.0.1', port=6379, db=1, max_connections=100, password=None, decode_responses=True)
  3. r = redis.Redis(connection_pool=pool)

flask 用的话不用在create_app注册,import下写就好,我也不知道为什么,能用就好

批量插入

  1. >>> import redis
  2. >>> conn = redis.Redis(host='192.168.8.176',port=6379)
  3. >>> pipe = conn.pipeline()
  4. >>> pipe.hset("hash_key","leizhu900516",8)
  5. Pipeline<ConnectionPool<Connection<host=192.168.8.176,port=6379,db=0>>>
  6. >>> pipe.hset("hash_key","chenhuachao",9)
  7. Pipeline<ConnectionPool<Connection<host=192.168.8.176,port=6379,db=0>>>
  8. >>> pipe.hset("hash_key","wanger",10)
  9. Pipeline<ConnectionPool<Connection<host=192.168.8.176,port=6379,db=0>>>
  10. >>> pipe.execute()
  11. [1L, 1L, 1L]
  12. >>>

这里有点质疑,应该是用连接池连接

批量查

  1. >>> pipe.hget("hash_key","leizhu900516")
  2. Pipeline<ConnectionPool<Connection<host=192.168.8.176,port=6379,db=0>>>
  3. >>> pipe.hget("hash_key","chenhuachao")
  4. Pipeline<ConnectionPool<Connection<host=192.168.8.176,port=6379,db=0>>>
  5. >>> pipe.hget("hash_key","wanger")
  6. Pipeline<ConnectionPool<Connection<host=192.168.8.176,port=6379,db=0>>>
  7. >>> result = pipe.execute()
  8. >>> print result
  9. ['8', '9', '10'] #有序的列表
  10. >>>

集群模式

  1. redis_db = redis.Redis(host='127.0.0.1',port=6379)
  2. data = ['zhangsan', 'lisi', 'wangwu']
  3. with redis_db.pipeline(transaction=False) as pipe:
  4. for i in data:
  5. pipe.zscore(self.key, i)
  6. result = pipe.execute()
  7. print result
  8. # [100, 80, 78]

pipe =conn.pipeline(transaction=False)
pipeline取值3500条数据,大约需要900ms