Currently I'm using below class to serve videos:

class VelfieVideoHandler(blobstore_handlers.BlobstoreDownloadHandler):

    def get(self, blobKey):
        blobKey = BlobKey(blobKey)
        blobinfo = blobstore.blobstore.BlobInfo(blobKey)
        self.send_blob(blobKey,content_type="""video/mp4""")

But the problem is: its taking atleast 2 seconds to response even though 
the video size is 100KB.
I test this code on 4Mbps speed and from Mumbai.

How can I optimize it?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9c4047fc-c835-4d8b-a549-729aec6d8153%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to