Commit 55be329b authored by Mikel Astiz's avatar Mikel Astiz Committed by Commit Bot

Enable sync leveldb memory tweaks by default

The recently introduced feature toggle has been experimented with via
Finch, suggesting that the new settings cause an important improvement
in RAM usage (with early data, ~5 MB for the 50th percentile). In
addition, all sync status metrics report no regression, so let's enable
the change by default (but keep the kill switch around).

Bug: 887068
Change-Id: Ic3d8d1dff09900f0e3f25f75db4bce71572224cb
Reviewed-on: https://chromium-review.googlesource.com/c/1268117Reviewed-by: default avatarJan Krcal <jkrcal@chromium.org>
Commit-Queue: Mikel Astiz <mastiz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#597552}
parent 029fb972
...@@ -31,9 +31,9 @@ const char ModelTypeStoreBackend::kStoreInitResultHistogramName[] = ...@@ -31,9 +31,9 @@ const char ModelTypeStoreBackend::kStoreInitResultHistogramName[] =
"Sync.ModelTypeStoreInitResult"; "Sync.ModelTypeStoreInitResult";
const base::Feature kModelTypeStoreAvoidReadCache{ const base::Feature kModelTypeStoreAvoidReadCache{
"kModelTypeStoreAvoidReadCache", base::FEATURE_DISABLED_BY_DEFAULT}; "kModelTypeStoreAvoidReadCache", base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kModelTypeStoreSmallWriteBufferSize{ const base::Feature kModelTypeStoreSmallWriteBufferSize{
"kModelTypeStoreSmallWriteBufferSize", base::FEATURE_DISABLED_BY_DEFAULT}; "kModelTypeStoreSmallWriteBufferSize", base::FEATURE_ENABLED_BY_DEFAULT};
namespace { namespace {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment