Giter VIP home page Giter VIP logo

django-counters's Introduction

Redis Counters

Counters for django models using redis.

Setup

settings.py:

REDIS = {
    'host': 'localhost',
    'port': 6379,
    'db': 1,
    'socket_timeout': 2,
}

COUNTERS_REDISES = {
    'default': dict(REDIS, db=4),
    'krasnoyarsk': dict(REDIS, host='krasnoyarsk.yoursite.ru', db=4, socket_timeout=5),
    'moscow': dict(REDIS, host='moscow.yoursite.ru', db=4, socket_timeout=5)
}
COUNTERS_REDISES.pop(SERVER_LOCATION)

Usage

models.py:

import counters

@counters.add('hits')
class Item(models.Model):
    ...

views.py:

def list(request):
    items = Item.objects.filter(...)
    counters.fill(items)
    ...

def detail(request, pk):
    item = Item.objects.get(pk=pk)
    item.incr_hits()

list.html:

{% for item in items %}
    {{ item.title }} {{ item.hits }}<br>
{% endfor $}

detail.html:

<h1>{{ item.title }}</h1>

Hits: {{ item.hits }}

django-counters's People

Contributors

suor avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.