Tagged 'tornado'

A quick guide on setting up Sentry error reporting for Tornado applications.

Read more →

How to safely serve large files using Tornado in a non-blocking manner.

Read more →

Although I don't like using callbacks for writing async code, but to make multiple HTTP requests and process them asynchronously, I do.

The advantage of using callbacks in this case over coroutines is that as soon as Tornado …

Read more →

Tornado's documentation is very feeble, or at least I found it so. It doesn't explain certain things in depth. Being new to async programming model, I found many things quite difficult to understand. The documentation also lacks a …

Read more →