Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0928a0a authored by Trevor Black's avatar Trevor Black Committed by Android (Google) Code Review
Browse files

Merge "Increased the Android blob cache size from 2mb to 32mb"

parents 46295180 9476468f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@
// Cache size limits.
static const size_t maxKeySize = 12 * 1024;
static const size_t maxValueSize = 64 * 1024;
static const size_t maxTotalSize = 2 * 1024 * 1024;
static const size_t maxTotalSize = 32 * 1024 * 1024;

// The time in seconds to wait before saving newly inserted cache entries.
static const unsigned int deferredSaveDelay = 4;