Comment #5 on issue 955 by fbuchinger: blob.getBytes and blob.slice performance issues in Chrome
http://code.google.com/p/gears/issues/detail?id=955

Have you tried to slice your huge file to "sub-blobs" of 1024 bytes using blob.slice()?

You could then use getBytes on each sub-blob to access the bytes of the file in your loop. This could remove your looping delay, because AFAIK blob.slice() has a much
better performance than blob.getBytes()

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to