rb

Routing and connection management for Redis in Python

https://github.com/getsentry/rb

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.0%) to scientific vocabulary

Keywords

tag-production

Keywords from Contributors

jinja pallets werkzeug wsgi templates apps views jinja2 template-engine
Last synced: 10 months ago · JSON representation

Repository

Routing and connection management for Redis in Python

Basic Info
Statistics
  • Stars: 301
  • Watchers: 71
  • Forks: 31
  • Open Issues: 8
  • Releases: 2
Topics
tag-production
Created almost 11 years ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog License

README.md

rb test

logo

rb - the redis blaster.

The fastest way to talk to many redis nodes. Can do routing as well as blindly blasting commands to many nodes. How does it work?

For full documentation see rb.rtfd.org

Quickstart

Set up a cluster:

```python 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:

```python 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:

python with cluster.fanout(hosts=[0, 1, 2, 3]) as client: infos = client.info()

Fanout to all:

python with cluster.fanout(hosts='all') as client: client.flushdb()

Owner

  • Name: Sentry
  • Login: getsentry
  • Kind: organization
  • Email: support@sentry.io
  • Location: United States of America

Real-time crash reporting for your web apps, mobile apps, and games.

GitHub Events

Total
  • Watch event: 1
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2
  • Fork event: 1
  • Create event: 1
Last Year
  • Watch event: 1
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2
  • Fork event: 1
  • Create event: 1

Committers

Last synced: about 1 year ago

All Time
  • Total Commits: 183
  • Total Committers: 15
  • Avg Commits per committer: 12.2
  • Development Distribution Score (DDS): 0.224
Past Year
  • Commits: 1
  • Committers: 1
  • Avg Commits per committer: 1.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Armin Ronacher a****r@a****m 142
Evan Purkhiser e****r@g****m 12
Ted Kaemming t****d@k****m 7
Burak Yigit Kaya b****n@b****m 5
anthony sottile 1****y 4
Dan Fuller d****r@s****o 3
Matt Robenolt m****t@y****m 2
getsentry-bot b****t@s****o 1
Yagiz Nizipli y****z@n****m 1
Tim Konick k****1@g****m 1
Shipeng Feng f****1@g****m 1
Jeffrey Hung 1****g 1
Christian Clauss c****s@m****m 1
getsentry-bot b****t@g****m 1
Raul Taranu r****u@s****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 11
  • Total pull requests: 46
  • Average time to close issues: about 1 month
  • Average time to close pull requests: 2 months
  • Total issue authors: 10
  • Total pull request authors: 18
  • Average comments per issue: 1.36
  • Average comments per pull request: 0.85
  • Merged pull requests: 33
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: about 20 hours
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • mitsuhiko (2)
  • tkaemming (1)
  • cclauss (1)
  • dcramer (1)
  • agb80 (1)
  • fengsp (1)
  • sunpoet (1)
  • fredgido (1)
  • timgates42 (1)
  • mattrobenolt (1)
Pull Request Authors
  • evanpurkhiser (14)
  • tkaemming (5)
  • asottile-sentry (4)
  • fengsp (4)
  • BYK (2)
  • mattrobenolt (2)
  • wedamija (2)
  • Jeffreyhung (2)
  • anonrig (2)
  • mitsuhiko (2)
  • cclauss (2)
  • joshuarli (1)
  • dcramer (1)
  • happyraul (1)
  • xtao (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 5,662 last-month
  • Total docker downloads: 230,100,106
  • Total dependent packages: 1
  • Total dependent repositories: 315
  • Total versions: 19
  • Total maintainers: 3
pypi.org: rb

rb, the redis blaster

  • Versions: 19
  • Dependent Packages: 1
  • Dependent Repositories: 315
  • Downloads: 5,662 Last month
  • Docker Downloads: 230,100,106
Rankings
Dependent repos count: 0.8%
Docker downloads count: 1.1%
Downloads: 2.9%
Average: 3.4%
Stargazers count: 3.6%
Dependent packages count: 4.8%
Forks count: 6.8%
Maintainers (3)
Last synced: 10 months ago

Dependencies

setup.py pypi
  • redis >=2.6,<3.5,
.github/workflows/build.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • actions/upload-artifact v2 composite
.github/workflows/release.yml actions
  • actions/checkout v2 composite
  • getsentry/action-prepare-release v1 composite
.github/workflows/test.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite