我的 Django webapp 允许用户下载动态生成的文本文件:
response = HttpResponse(my_file_contents)
response['Content-Disposition'] = 'attachment; filename="my file.txt"'
return response
我安装了 Django 调试工具栏(0.11.0,因为我无法让 1.0.1 工作),但是当我单击进行下载时,工具栏没有显示有关已下载文件的信息,大概是因为这是一个单独的页面/请求(或者可能因为它是一个非 HTML 文件)。下载的文件也不包含任何调试信息。
如何分析此文件下载的性能?