On the other hand, the load/update delay is a one-off (well, a few
times, but seldom), whereas loading files from a jar at runtime would
add delay every time the extension uses the files.
> --
> You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
> To post to this group, send email to chromium-...@chromium.org.
> To unsubscribe from this group, send email to chromium-extens...@chromium.org.
> For more options, visit this group at http://groups.google.com/a/chromium.org/group/chromium-extensions/?hl=en.
>
>
Wow, that's a lot of files! I can't say we've done much performance
optimizing for 1,800-file extensions. You can submit your suggestion
at http://crbug.com/new.
You might also want to host some of the files remotely and lazy-load
them. I imagine most are never accessed by the average user.
--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To post to this group, send email to chromium-...@chromium.org.
To unsubscribe from this group, send email to chromium-extens...@chromium.org.
-Casey
> --
> You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
> To post to this group, send email to chromium-...@chromium.org.
> To unsubscribe from this group, send email to chromium-extens...@chromium.org.
You cannot simply read zipped data and use it, it must be unzipped
first. If you unzip files upon access (which is w hat I think you are
asking for here), the you avoid the delay you seem to be experiencing
when all the files are unzipped at once. You cannot get around the
fact that the files are compressed. I think what you are asking for is
that files be decompressed when they are accessed (incremental unzip).
Also, you aren't going to get much help if you troll everyone who
tries to help you.
-Casey
Ubuntu Lucid Lynx (32-bit), for reference.
--
You received this message because you are subscribed to the Google Groups "Chromium-extensions" group.
To post to this group, send email to chromium-...@chromium.org.
To unsubscribe from this group, send email to chromium-extens...@chromium.org.