文件名称:Redis的路由和连接管理器rb.zip
文件大小:166KB
文件格式:ZIP
更新时间:2022-08-08 03:21:38
开源项目
rb(redis blaster) 是一个用于 Redis 的路由和连接管理器,用 Python 编写。rb 是最快的和多个 redis 节点对话的方式,可以在作为路由的同时对多个节点进行 blindly blasting 命令。它是 redis 一个实现非复制分片的库。在 python redis 的顶层,实现了一个自定义的路由系统。允许你自动对准不同的服务器,不必手动请求路由到单个节点。它没有实现 redis 的所有功能,也不打算这样做。你可以在任意点获取一个对应特定 host 的客户端,但在大多数情况下,它假设是你的操作仅限于基本的键/值操作,可以自动路由到不同的节点。能做什么:单键操作就能自动对准 hosts 对所有或子集的节点执行命令并行地完成上述项目Set up a cluster:from rb import Cluster cluster = Cluster({ 0: {'port': 6379}, 1: {'port': 6380}, 2: {'port': 6381}, 3: {'port': 6382}, }, host_defaults={ 'host': '127.0.0.1', })Automatic routing:results = [] with cluster.map() as client: for key in range(100): client.get(key).then(lambda x: results.append(int(x or 0))) print 'Sum: %s' % sum(results)Fanout:with cluster.fanout(hosts='all') as client: client.flushdb() 标签:redis
【文件预览】:
rb-master
----.travis.yml(888B)
----hooks()
--------pre-commit(1KB)
----.travis-osx.sh(283B)
----docs()
--------conf.py(7KB)
--------make.bat(4KB)
--------Makefile(4KB)
--------_themes()
--------index.rst(5KB)
--------_static()
----artwork()
--------logo.svg(218KB)
----rb()
--------testing.py(4KB)
--------clients.py(22KB)
--------router.py(4KB)
--------promise.py(5KB)
--------cluster.py(16KB)
--------__init__.py(656B)
--------ketama.py(2KB)
--------_rediscommands.py(18KB)
--------poll.py(6KB)
----tests()
--------conftest.py(259B)
--------test_poll.py(525B)
--------test_promise.py(2KB)
--------test_ketama.py(1KB)
--------test_cluster.py(8KB)
--------test_router.py(2KB)
----LICENSE(11KB)
----CHANGES(2KB)
----.travis-linux.sh(0B)
----setup.py(657B)
----.gitignore(64B)
----Makefile(141B)
----README.md(943B)