我有一组静态文件(通过应用程序上传),如图像,视频等,需要提供给经过身份验证的用户(即他们的cookie在会话中注册为已通过身份验证)。
这些文件是独立的,与css,javaacript等其他媒体静态文件无关。
鉴于我需要进行身份验证的静态文件相当大,我想知道最有效的服务方式是什么(顺便说一句,我使用的是wsgi)。
目前我有这个:
def return_large_file(request, p_filename):
"""
Send a file through Django without loading the whole file into
memory at once. The FileWrapper will turn the file object into an
iterator for chunks of 8KB.
"""
if not os.path.exists(p_filename):
raise Exception('File %s does not exist!')
try:
_content_type = mimetypes.guess_type(p_filename)
except:
_content_type = 'application/octet-stream'
wrapper = FileWrapper(file(p_filename))
response = HttpResponse(wrapper, content_type=_content_type)
response['Content-Length'] = os.path.getsize(p_filename)
return response
答案 0 :(得分:1)
我目前正在使用与您上面使用的功能类似的功能。
我在考虑一旦性能/效率成为问题,我会使用Apache mod-auth-external对给定文件进行自定义授权。
请注意,我提供这个答案不是基于我的经验,而是我自己的研究带领我。