Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15411602
D17409.id41861.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D17409.id41861.diff
View Options
diff --git a/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php b/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php
--- a/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php
+++ b/src/applications/repository/engine/PhabricatorRepositoryDiscoveryEngine.php
@@ -14,7 +14,7 @@
private $commitCache = array();
private $workingSet = array();
- const MAX_COMMIT_CACHE_SIZE = 2048;
+ const MAX_COMMIT_CACHE_SIZE = 65535;
/* -( Discovering Repositories )------------------------------------------- */
@@ -476,6 +476,15 @@
return;
}
+ $max_size = self::MAX_COMMIT_CACHE_SIZE;
+
+ // If we're filling more identifiers than would fit in the cache, ignore
+ // the ones that don't fit. Because the cache is FIFO, overfilling it can
+ // cause the entire cache to miss. See T12296.
+ if (count($identifiers) > $max_size) {
+ $identifiers = array_slice($identifiers, 0, $max_size);
+ }
+
// When filling the cache we ignore commits which have been marked as
// unreachable, treating them as though they do not exist. When recording
// commits later we'll revive commits that exist but are unreachable.
@@ -492,7 +501,7 @@
$this->commitCache[$commit->getCommitIdentifier()] = true;
}
- while (count($this->commitCache) > self::MAX_COMMIT_CACHE_SIZE) {
+ while (count($this->commitCache) > $max_size) {
array_shift($this->commitCache);
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 9:28 AM (2 d, 6 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7389428
Default Alt Text
D17409.id41861.diff (1 KB)
Attached To
Mode
D17409: Increase the size of the Diffusion commit cache
Attached
Detach File
Event Timeline
Log In to Comment