Giter VIP home page Giter VIP logo

django-websocket-redis's Introduction

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.

New in 0.4.5

  • Created 1 requirements file under examples/chatserver/requirements.txt.
  • Renamed chatclient.py to test_chatclient.py - for django-nose testrunner.
  • Migrated example project to django 1.7.
  • Edited docs/testing.rst to show new changes for using example project.
  • Added support for Python 3.3 and 3.4.
  • Added support for Django-1.8
  • Removes the check for middleware by name.

Features

  • Largely scalable for Django applications with many hundreds of open websocket connections.
  • Runs a seperate 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 seperate 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 seperate main loop through Redis which, by the way is a good replacement for memcached.
  • Optionally persiting 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.

Build status

Build Status Downloads

Questions

Please use the issue tracker to ask questions.

License

Copyright © 2015 Jacob Rief.

MIT licensed.

django-websocket-redis's People

Contributors

agdude avatar aorcajo avatar aviau avatar bastiao avatar depaolim avatar eagle21st avatar erwinjunge avatar fako avatar gitaarik avatar iorlas avatar jizhilong avatar joerick avatar jrief avatar keilan avatar lordi avatar manuelzs avatar marcelchastain avatar nanuxbe avatar oal avatar or avatar outime avatar ppokrovsky avatar roidelapluie avatar sdobz avatar smcdonald-bepress avatar tmehlinger avatar yguarata 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.