Skip to main content

A Redis snooze delayed queue module.

Project description

pyrede - The redis Element Snooze Python Module

:rocket:A Rede is a fancy snooze delayed queue

Usage

The Rede is an effective 'snooze button' for events, you push an event into it along (for future referance) and in how many seconds you want it back, and poll whenever you want the elements back. only expired elements would pop out.

   import pyrede
   import redis

   rede = pyrede.Rede(redis.Redis(decode_responses=True), "demo")

   rede.push("123", 1)
   rede.push("456", 1)
   rede.push("789", 3)

   time.sleep(1)

   list(rede.poll())

output-> ["123", "456"]

Project details


Download files

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

Source Distribution

pyrede-0.0.4.tar.gz (5.2 kB view hashes)

Uploaded Source

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