Skip to main content

A simple probabilistic counter.

Project description

A simple and efficient probabilistic counter, suited for rate limiting and counting efficiently, without uploading every action to the remote database.

Usage

Instructions

from probcount import ProbCounter
from functools import partial

pc = ProbCounter()

def old_increase_function(counter_name, value):
    # run the real call to the DB increasing the counter
    # for a redis
    # return redis.Redis().incrby(name=counter_name, amount=value)
    # or a MongoDB
    # return (pymongo.MongoClient().database_name.collection_name.find_one_and_update({"_id": counter_name},
                                                                                      {"$inc": {"value": value}},
                                                                                      {"value": 1}).get("value", 0) + value)
    pass

def old_get_function(counter_name):
    # run the real call to the DB increasing the counter
    # for a redis
    # redis.Redis().get(name=counter_name)
    # or a MongoDB
    # pymongo.MongoClient().database_name.collection_name.find_one({"_id": counter_name}, {"value": 1}).value
    pass


pc.create("name_of_counter", partial(old_increase_function, "name_of_counter"), partial(old_get_function, "name_of_counter"))
pc.inc("name_of_counter", 42.0)
pc.get("name_of_counter")

Supported Python Versions

Python Project Template supports the following versions out of the box:

  • CPython 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, 3.7

  • PyPy 1.9

Authors

  • Tudor Aursulesei

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

probcount-0.1.tar.gz (17.3 kB view details)

Uploaded Source

File details

Details for the file probcount-0.1.tar.gz.

File metadata

  • Download URL: probcount-0.1.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for probcount-0.1.tar.gz
Algorithm Hash digest
SHA256 6a2ee525e7cd6868ec3fc3bfa5893192e605bd211db7fb2366165c2dbcd020d9
MD5 e9cc96268af84f1ec93bda97bb8a8872
BLAKE2b-256 1ccad33fbeba0f9b9fdf835e93757a3caf95bd31b82e83a639144801490a78d6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page