diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-11 23:49:43 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-11 23:49:43 +0000 |
commit | 763ebe7adfd2aa850f94862b49ee6d7371d0e22f (patch) | |
tree | 687a82eaec0a9896698b1b8cbcdd999964fead42 /net/tools | |
parent | 579f8970ea79d64a3d76c9201f28c9b0c8ed5862 (diff) | |
download | chromium_src-763ebe7adfd2aa850f94862b49ee6d7371d0e22f.zip chromium_src-763ebe7adfd2aa850f94862b49ee6d7371d0e22f.tar.gz chromium_src-763ebe7adfd2aa850f94862b49ee6d7371d0e22f.tar.bz2 |
Disk cache: Set up an experiment to measure the effect of
increasing the maximum cache size.
There will be three groups on the experiment, each group with
10% of the users (Dev Channel). Each group will have the max
cache size increased by a factor from 2 to 4 times the current
size, and we'll measure the age of evicted entries.
I'm also adding a few metrics of reliability, to detect how
often we're not getting to do proper cleanup.
Review URL: http://codereview.chromium.org/14013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6847 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools')
-rw-r--r-- | net/tools/dump_cache/dump_files.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/tools/dump_cache/dump_files.cc b/net/tools/dump_cache/dump_files.cc index e5d6f27..85a4f24 100644 --- a/net/tools/dump_cache/dump_files.cc +++ b/net/tools/dump_cache/dump_files.cc @@ -61,6 +61,8 @@ void DumpIndexHeader(const std::wstring name) { printf("last file number: %d\n", header.last_file); printf("current id: %d\n", header.this_id); printf("table length: %d\n", header.table_len); + printf("last crash: %d\n", header.crash); + printf("experiment: %d\n", header.experiment); for (int i = 0; i < 5; i++) { printf("head %d: 0x%x\n", i, header.lru.heads[i]); printf("tail %d: 0x%x\n", i, header.lru.tails[i]); |