Django application that keeps content visit count in redis first, then dump to database via extra job.
Project description
Django application that keeps content visit count in redis first, then dump to database via extra job.
Install
pip install django-redis-counter
Dependencies
django
redis
Usage
Add drc in INSTALLED_APPS in django settings.py. drc is short for django-redis-counter.
INSTALLED_APPS = [ ... 'drc', ... ]
Define counter models in app’s models.py.
from drc.models import Counter class Page(models.Model): title = models.CharField(max_length=32) ... class PageCounter(Counter): pass
Call incr in views.
def display_page(request, page_id): page = Page.objects.get(pk=page_id) page_visit_number = PageCounter.incr(page) return render(request, "page.html", { "page": page, "page_visit_number": page_visit_number, })
Create a script to dump cached data to database. Name the script to page_counter_dump.sh or what ever you like.
#!/bin/bash cd /your/project/path python manage.py drc-dump
Add dump task as schedule job, e.g. crontab job.
* * * * * page_counter_dump.sh # dump the cached data every minutes 1 * * * * page_counter_dump.sh # dump the cached data every hour.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-redis-counter-0.1.1.tar.gz
.
File metadata
- Download URL: django-redis-counter-0.1.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af64625dd1f09a1f986e052d4982f6156687d53010c2983a26e28660bd72ef33 |
|
MD5 | 8b0d2dc8d6d91f46bf1163cf99751895 |
|
BLAKE2b-256 | 98df7ededad31f1f34e3a7dff62ef47e3d742cda4ef820e3b1ac6fb054c133b5 |