Twisted(asynch server) vs Django(or any other framework)

11,745

Solution 1

Asynchronous servers support much larger numbers of simultaneous client connections. More conventional servers come up against thread and process limits when servicing large number of concurrent clients, particularly those with long-lived connections. Async servers can also provide better performance as they avoid the overheads of e.g. thread context switching.

As well as the Twisted framework, there are also asynchronous server building blocks in Python's standard library: previously asyncore and asynchat, but now also asyncio.

Solution 2

First off Django is a framework for writing web apps so it provides ORM, html templating, it requires running an http server etc. Twisted helps to write much lower level code than that. You could use twisted to write the http server Django runs on. If you use Django you are limited to http model, with twisted it could be communicating in any protocol you like including push protocols. So for your chat example you get a server that scales better since it can push comments to people who have logged in VS with django every client having to poll repeatedly.

edited to reflect comments by: sos-skyl

Solution 3

The biggest advantage for me is that Twisted gives me an application that has state, and can communicate with many different clients using many protocols.

For me, my Twisted server communicates with a number of sensors installed in houses and businesses that monitor power usage. It stores the data and keeps recent data and state in handy-dandy python classes in memory. Requests via xmlrpc from django get this state and can present recent data to the user. My Gridspy stuff is still in development so the actual site at your.gridspy.co.nz is a bit pre-alpha.

The best part is that you need surprisingly little code to make an effective server. An amazing amount of the work is done for you.

Solution 4

In twisted you can implement protocols of your own. Django certainly can't do this.

Share:
11,745
Samuel Overduib
Author by

Samuel Overduib

Updated on June 04, 2022

Comments

  • Samuel Overduib
    Samuel Overduib almost 2 years

    I need help understanding what the advantage of using an asynch framework is. Suppose I want to develop a simple chat web app. Why cant I write python code in the Django framework that does long polling where I dont send a response back the server until someone enters a new msg. What does Twisted provide that gives it an advantage for real-time apps like the chat app?

    Sorry I am obviously little confused about the need for an asynchronous framework.