Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(294)

Issue 10389067: Optimized webstorage performance (Closed)

Created:
8 years, 7 months ago by Pan
Modified:
8 years, 6 months ago
CC:
chromium-reviews, joi+watch-content_chromium.org, darin-cc_chromium.org, jam
Base URL:
http://git.chromium.org/chromium/src.git@master
Visibility:
Public.

Description

Optimized webstorage performance This patch is to improve WebStorage access perfomance. Chromium WebStorage getItem & setItem perfomance is not so good because of its multiporcess arch. Currently, WebStorage data transfer between browser process and renderer process by Channel, which is implemented by pipe on Win platfrom, unix domain socket on POSIX platfrom. One issue is, when data size is big, both pipe and socket IPC performs worse than shared memory mechnasim. in this change, big size WebStorage data is transfered by shared memory, it will improve the setItem()/getItem() performance. According to the perforamnce test case "WebStoragePerfTest.html" I submit in http://code.google.com/p/chromium/issues/detail?id=127528, By this patch On platform Ubuntu11.04/4G Memory/ Core i7, setItem() peformance improved 40%, getItem improved 10%. On platform Win7/4G Memory/Core i5 M560, setItem() peformance improved 30%, getItem improved 15%. BUG=127528 TEST=launch chromium and load WebStoragePerfTest.html, result will be shown after javascript finished.

Patch Set 1 #

Total comments: 6

Patch Set 2 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+166 lines, -11 lines) Patch
M AUTHORS View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/dom_storage/dom_storage_message_filter.h View 2 chunks +17 lines, -5 lines 0 comments Download
M content/browser/dom_storage/dom_storage_message_filter.cc View 5 chunks +64 lines, -0 lines 0 comments Download
M content/common/dom_storage_messages.h View 1 3 chunks +15 lines, -1 line 0 comments Download
M content/renderer/renderer_webstoragearea_impl.cc View 1 2 chunks +60 lines, -5 lines 0 comments Download
M webkit/dom_storage/dom_storage_types.h View 2 chunks +9 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
michaeln
Hi pan, Thanx for the bug report and the patch. We know about this problem ...
8 years, 7 months ago (2012-05-10 18:42:59 UTC) #1
michaeln
some ideas about where shared mem usage might be of help going forward... http://codereview.chromium.org/10389067/diff/1/content/browser/dom_storage/dom_storage_message_filter.cc File ...
8 years, 7 months ago (2012-05-10 20:24:19 UTC) #2
Pan
Hi michaeln, Thanks for your quickly reply, :) I have seen the ASYNC code in ...
8 years, 7 months ago (2012-05-11 08:45:41 UTC) #3
michaeln
> I have seen the ASYNC code in dom_storage_message_filter.cc, I believe that > would give ...
8 years, 7 months ago (2012-05-11 15:10:08 UTC) #4
Pan
http://codereview.chromium.org/10389067/diff/1/content/renderer/renderer_webstoragearea_impl.cc File content/renderer/renderer_webstoragearea_impl.cc (right): http://codereview.chromium.org/10389067/diff/1/content/renderer/renderer_webstoragearea_impl.cc#newcode119 content/renderer/renderer_webstoragearea_impl.cc:119: if (!shared_buf.CreateAndMapAnonymous(value_len)) { Thanks :) Yes, renderer cannot create ...
8 years, 7 months ago (2012-05-14 06:50:30 UTC) #5
Pan
On 2012/05/11 15:10:08, michaeln wrote: > > I have seen the ASYNC code in dom_storage_message_filter.cc, ...
8 years, 7 months ago (2012-05-14 07:04:24 UTC) #6
michaeln
I don't see concurrent writes as a problem. You can see how that's handled in ...
8 years, 7 months ago (2012-05-14 18:14:45 UTC) #7
michaeln
I think the discussion here has shifted and is more relevant to the code which ...
8 years, 7 months ago (2012-05-14 20:16:12 UTC) #8
Pan
On 2012/05/14 20:16:12, michaeln wrote: > I think the discussion here has shifted and is ...
8 years, 7 months ago (2012-05-15 05:03:19 UTC) #9
michaeln
hi again pan, haven't heard from you in a while. i've run the test you ...
8 years, 6 months ago (2012-05-29 23:04:46 UTC) #10
Pan
8 years, 6 months ago (2012-05-30 00:24:33 UTC) #11
Hi Michael, your work is very impressive, this CL should be closed.
Thanks. :)

-----Original Message-----
From: michaeln@chromium.org [mailto:michaeln@chromium.org] 
Sent: Wednesday, May 30, 2012 7:05 AM
To: Deng, Pan; darin@chromium.org; jorlow@chromium.org; abarth@chromium.org
Cc: chromium-reviews@chromium.org; joi+watch-content@chromium.org;
darin-cc@chromium.org; jam@chromium.org
Subject: Re: Optimized webstorage performance (issue 10389067)

hi again pan, haven't heard from you in a while. i've run the test you provided
against m20 (sync and no caching) and m21 (async with caching).

**** m20 results (sync w/o caching)

Write Test:
string size	rounds	total size	total time (ms)	average speed (KB/s)
4096KB	384	1572864KB	18911	83171.91
Read Test:
string size	rounds	total size	total time (ms)	average speed (KB/s)
4096KB	384	1572864KB	11399	137982.63

**** m21 results (async with caching)

Write Test:
string size	rounds	total size	total time (ms)	average speed (KB/s)
4096KB	384	1572864KB	6397	245875.25
Read Test:
string size	rounds	total size	total time (ms)	average speed (KB/s)
4096KB	384	1572864KB	4904	320730.83

i think we can close this particular CL

https://chromiumcodereview.appspot.com/10389067/

Powered by Google App Engine
This is Rietveld 408576698