Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using tornado to serve large files

Tags:

python

tornado

We have a need for to use Tornado for serving large files (multiple GBs) that require authentication to access. From what we can tell, doing this with a get and chunking the files via Task will potentially be slow or block. Is there a recommended method for serving large files that require authentication?

like image 663
daniel Avatar asked Nov 07 '14 18:11

daniel


1 Answers

I think this is the best solution. Note that is a combination of tornado and nginx.

like image 61
Antonio González Avatar answered Nov 16 '22 16:11

Antonio González