Bug 122954 - Try to keep AppCache memory caches in control
Summary: Try to keep AppCache memory caches in control
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Xabier Rodríguez Calvar
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-17 04:51 PDT by Xabier Rodríguez Calvar
Modified: 2022-10-27 08:53 PDT (History)
12 users (show)

See Also:


Attachments
Patch (14.49 KB, patch)
2013-10-17 04:53 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff
Patch (14.53 KB, patch)
2013-10-17 07:26 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff
Patch (16.11 KB, patch)
2013-10-31 05:14 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff
Patch (16.81 KB, patch)
2013-11-08 10:58 PST, Xabier Rodríguez Calvar
beidson: review-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Xabier Rodríguez Calvar 2013-10-17 04:51:51 PDT
[AppCache] Trying to keep memory caches in control
Comment 1 Xabier Rodríguez Calvar 2013-10-17 04:53:06 PDT
Created attachment 214441 [details]
Patch

Attempt to keep the memory cache under control. This is a proof of concept and suggestions are very welcome. Changelog will be added when patch is ready.
Comment 2 Build Bot 2013-10-17 05:21:13 PDT
Comment on attachment 214441 [details]
Patch

Attachment 214441 [details] did not pass mac-wk2-ews (mac-wk2):
Output: http://webkit-queues.appspot.com/results/3474135
Comment 3 Build Bot 2013-10-17 05:39:46 PDT
Comment on attachment 214441 [details]
Patch

Attachment 214441 [details] did not pass mac-ews (mac):
Output: http://webkit-queues.appspot.com/results/3480051
Comment 4 Xabier Rodríguez Calvar 2013-10-17 07:26:19 PDT
Created attachment 214454 [details]
Patch

AtFixed compile issue
Comment 5 Alexey Proskuryakov 2013-10-17 09:38:06 PDT
Could you please explain your approach? It's hard to see how code proves a concept when the concept is kept secret :)
Comment 6 Xabier Rodríguez Calvar 2013-10-17 09:52:07 PDT
(In reply to comment #5)
> Could you please explain your approach? It's hard to see how code proves a concept when the concept is kept secret :)

Sure , sorry for that :)

The idea is having an upper limit for the memory used by the app cache in case we have several caches in memory and as they are in the database anyway we can reload the resource from disk to memory easily when needed.

What the patch does is setting some control points, specially when a cache is loaded or stuff is added to it. Then it checks the size of the caches in memory and if it's above the limit, at a first step it tries to dump all caches but the last one and if that doesn't reach the limit, it waits for some time and  then it dumps everything.
Comment 7 Alexey Proskuryakov 2013-10-21 09:54:38 PDT
Yes, this is certainly a huge inefficiencies in the current appcache implementation.

I don't think that hardcoding a limit is a great answer though. Keeping even a single application in memory doesn't make sense when it's large.

We need something much more like a regular resource cache, just backed by appcache database and not the network. That would respect system low memory notifications too.
Comment 8 Xabier Rodríguez Calvar 2013-10-28 10:57:09 PDT
(In reply to comment #7)
> Yes, this is certainly a huge inefficiencies in the current appcache implementation.
> 
> I don't think that hardcoding a limit is a great answer though. Keeping even a single application in memory doesn't make sense when it's large.
> 
> We need something much more like a regular resource cache, just backed by appcache database and not the network. That would respect system low memory notifications too.

With the approach I am trying, no app is stored in memory after certain amount of time, because it is evicted by the timer.
Comment 9 Xabier Rodríguez Calvar 2013-10-28 10:58:33 PDT
(In reply to comment #8)
> (In reply to comment #7)
> > Yes, this is certainly a huge inefficiencies in the current appcache implementation.
> > 
> > I don't think that hardcoding a limit is a great answer though. Keeping even a single application in memory doesn't make sense when it's large.
> > 
> > We need something much more like a regular resource cache, just backed by appcache database and not the network. That would respect system low memory notifications too.
> 
> With the approach I am trying, no app is stored in memory after certain amount of time, because it is evicted by the timer.

With this I mean if there is any way that we can work out this patch and get it applied, knowing that we need to fix it better, of course, but as an improvement instead of a permanent solution?
Comment 10 Xabier Rodríguez Calvar 2013-10-31 05:14:13 PDT
Created attachment 215643 [details]
Patch

Done some improvements for the moment the cache is created and added cache eviction for background.
Comment 11 Build Bot 2013-11-04 03:01:17 PST
Comment on attachment 215643 [details]
Patch

Attachment 215643 [details] did not pass mac-wk2-ews (mac-wk2):
Output: http://webkit-queues.appspot.com/results/19598732
Comment 12 Build Bot 2013-11-04 03:44:24 PST
Comment on attachment 215643 [details]
Patch

Attachment 215643 [details] did not pass mac-ews (mac):
Output: http://webkit-queues.appspot.com/results/19598747
Comment 13 Build Bot 2013-11-04 03:54:02 PST
Comment on attachment 215643 [details]
Patch

Attachment 215643 [details] did not pass mac-ews (mac):
Output: http://webkit-queues.appspot.com/results/19628700
Comment 14 Xabier Rodríguez Calvar 2013-11-08 10:58:32 PST
Created attachment 216412 [details]
Patch

Fixed Mac build.
Comment 15 Xabier Rodríguez Calvar 2013-11-14 08:17:06 PST
(In reply to comment #7)
> I don't think that hardcoding a limit is a great answer though. Keeping even a single application in memory doesn't make sense when it's large.

It takes into account the cache only for the first pass, after the timeout that cache should be purged too.

> We need something much more like a regular resource cache, just backed by appcache database and not the network. That would respect system low memory notifications too.

Is there any way we could get landed even it is not the perfect solution? I think it is better than nothing.
Comment 16 Brady Eidson 2016-05-24 22:05:06 PDT
Comment on attachment 216412 [details]
Patch

Assuming that patches for review since 2013 are stale, r-
Comment 17 Anne van Kesteren 2022-10-27 08:53:03 PDT
AppCache is now disabled and will be removed in bug 219391.