• Stars
    star
    889
  • Rank 49,524 (Top 2 %)
  • Language
    Python
  • License
    MIT License
  • Created over 10 years ago
  • Updated 12 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Websockets for Django applications using Redis as message queue

django-websocket-redis

Project home: https://github.com/jrief/django-websocket-redis

Detailed documentation on ReadTheDocs.

Online demo: http://django-websocket-redis.awesto.com/

Websockets for Django using Redis as message queue

This module implements websockets on top of Django without requiring any additional framework. For messaging it uses the Redis datastore and in a production environment, it is intended to work under uWSGI and behind NGiNX or Apache version 2.4.5 or later.

Features

  • Largely scalable for Django applications with many hundreds of open websocket connections.
  • Runs a separate Django main loop in a cooperative concurrency model using gevent, thus only one thread/process is required to control all open websockets simultaneously.
  • Full control over this separate main loop during development, so Django can be started as usual with ./manage.py runserver.
  • No dependency to any other asynchronous event driven framework, such as Tornado, Twisted or Socket.io/Node.js.
  • Normal Django requests communicate with this separate main loop through Redis which, by the way is a good replacement for memcached.
  • Optionally persisting messages, allowing server reboots and client reconnections.

If unsure, if this proposed architecture is the correct approach on how to integrate Websockets with Django, then please read Roberto De Ioris (BDFL of uWSGI) article about Offloading Websockets and Server-Sent Events AKA “Combine them with Django safely”.

Please also consider, that whichever alternative technology you use, you always need a message queue, so that the Django application can “talk” to the browser. This is because the only link between the browser and the server is through the Websocket and thus, by definition a long living connection. For scalability reasons you can't start a Django server thread for each of these connections.

Release History

Refer to changelog.rst

Build status

Build Status Downloads

Questions

Please use the issue tracker to ask questions.

License

Copyright © 2015 Jacob Rief.

MIT licensed.

More Repositories

1

django-angular

Let AngularJS play well with Django
JavaScript
1,231
star
2

django-admin-sortable2

Generic drag-and-drop ordering for objects in the Django admin interface
Python
705
star
3

django-sass-processor

SASS processor to compile SCSS files into *.css, while rendering, or offline.
Python
396
star
4

django-formset

The missing widgets and form manipulation library for Django
Python
251
star
5

djangocms-cascade

Build Single Page Applications using the Django-CMS plugin system
Python
163
star
6

django-entangled

Edit JSON-Model Fields using a Standard Django Form.
Python
121
star
7

angular-retina

Add support for Retina displays when using element attribute "ng-src"
JavaScript
120
star
8

djangocms-bootstrap

django-CMS templatetags and HTML snippets to handle the navigation when used in combination with Bootstrap-3/4
HTML
13
star
9

django-nodebow

Just initialized
Python
8
star
10

angular-bootstrap-plus

Additional directives for AngularJS
JavaScript
8
star
11

django-shop-wishlists

Wishlists plugin for django-shop
Python
5
star
12

django-shop-productvariations

Python
5
star
13

django-shop-ipayment

A django-SHOP payment backend for IPayment (https://ipayment.de/)
Python
4
star
14

cookiecutter-djangocms-cascade

Cookiecutter templates to create a django-CMS project using plugins from Cascade
Python
4
star
15

my-shop

Django-SHOP demo generated by cookiecutter-django-shop and used to migrate towards Bootstrap-4
Python
3
star
16

djangocms-reveal

DjangoCMS plugin for presentations based on reveal.js
JavaScript
2
star
17

cmsplugin-text-wrapper

A cms plugin which extends and replaces the text plugin shipped with django-cms with simple wrapper functionalities.
Python
2
star
18

django-girls

Python
1
star