Skip to Content
Lightweight Django
book

Lightweight Django

by Julia Solórzano, Mark Lavin
November 2014
Intermediate to advanced
243 pages
5h 38m
English
O'Reilly Media, Inc.
Content preview from Lightweight Django

Chapter 7. Real-Time Django

There has been a recent trend toward building real-time web applications or integrating real-time components into existing applications. However, Django is primarily optimized for short-lived HTTP request/response cycles, and most Python web servers are not made for handling a large number of concurrent and long-lived connections required to support real-time applications. The rise of Node.js and the inclusion of asyncio in the Python standard library have many developers using cooperative multitasking and event loops for a solution to the high-concurrency problem. However, this solution requires the entire stack to be written in this cooperative fashion to ensure that nothing blocks the loop. There is no easy way to make this drop into an existing Django application. Beyond inefficient long polling, there is no obvious solution to add real-time features to a Django application.

In this chapter, we’ll explore how to integrate real-time features into the same task-board application backed by the Django-based REST API. The real-time features will be handled by a new server, written using Tornado, that uses asynchronous I/O to handle a large number of concurrent connections. We’ll learn how to effectively and securely allow Django to push updates to the client. First we’ll examine the set of new web APIs defined in HTML5 to better understand this approach.

HTML5 Real-Time APIs

We will incorporate real-time updates to our application to let users see tasks moving ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Django Unleashed

Django Unleashed

Andrew Pinkham
Django 2 by Example

Django 2 by Example

Antonio Melé

Publisher Resources

ISBN: 9781491946275Errata Page