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

Unified Diff: net/disk_cache/backend_impl.cc

Issue 2891022: Disk cache: Read the index and data_0 files in a single... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/disk_cache/backend_impl.cc
===================================================================
--- net/disk_cache/backend_impl.cc (revision 52189)
+++ net/disk_cache/backend_impl.cc (working copy)
@@ -1719,12 +1719,12 @@
void BackendImpl::ReportStats() {
CACHE_UMA(COUNTS, "Entries", 0, data_->header.num_entries);
- CACHE_UMA(COUNTS, "Size", 0, data_->header.num_bytes / (1024 * 1024));
- CACHE_UMA(COUNTS, "MaxSize", 0, max_size_ / (1024 * 1024));
+ CACHE_UMA(COUNTS_10000, "Size2", 0, data_->header.num_bytes / (1024 * 1024));
nsylvain 2010/07/15 05:47:04 What is COUNTS_10000 ?
rvargas (doing something else) 2010/07/15 18:31:50 Counts adjust the scale from 0 to 1 million. count
+ CACHE_UMA(COUNTS_10000, "MaxSize2", 0, max_size_ / (1024 * 1024));
- CACHE_UMA(COUNTS, "AverageOpenEntries", 0,
+ CACHE_UMA(COUNTS_10000, "AverageOpenEntries2", 0,
static_cast<int>(stats_.GetCounter(Stats::OPEN_ENTRIES)));
- CACHE_UMA(COUNTS, "MaxOpenEntries", 0,
+ CACHE_UMA(COUNTS_10000, "MaxOpenEntries2", 0,
static_cast<int>(stats_.GetCounter(Stats::MAX_ENTRIES)));
stats_.SetCounter(Stats::MAX_ENTRIES, 0);
@@ -1756,6 +1756,7 @@
int avg_size = data_->header.num_bytes / GetEntryCount();
CACHE_UMA(COUNTS, "EntrySize", 0, avg_size);
+ CACHE_UMA(COUNTS, "EntriesFull", 0, data_->header.num_entries);
CACHE_UMA(PERCENTAGE, "IndexLoad", 0,
data_->header.num_entries * 100 / (mask_ + 1));
@@ -1778,6 +1779,9 @@
stats_.ResetRatios();
stats_.SetCounter(Stats::TRIM_ENTRY, 0);
+
+ if (cache_type_ == net::DISK_CACHE)
+ block_files_.ReportStats();
}
void BackendImpl::UpgradeTo2_1() {
@@ -1844,7 +1848,9 @@
if (!mask_)
mask_ = data_->header.table_len - 1;
- return true;
+ // Load the table into memory with a single read.
+ scoped_array<char> buf(new char[current_size]);
+ return index_->Read(buf.get(), current_size, 0);
nsylvain 2010/07/15 05:47:04 How much does it help? Or is this just an experime
rvargas (doing something else) 2010/07/15 18:31:50 Hard to tell, because it only affects people with
}
int BackendImpl::CheckAllEntries() {

Powered by Google App Engine
This is Rietveld 408576698