Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15470664
D9055.id21575.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
D9055.id21575.diff
View Options
diff --git a/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php b/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php
--- a/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php
+++ b/src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php
@@ -55,6 +55,8 @@
*/
final class PhabricatorRepositoryGraphCache {
+ private $rebuiltKeys = array();
+
/* -( Querying the Graph Cache )------------------------------------------- */
@@ -282,6 +284,20 @@
* @task cache
*/
private function rebuildBucket($bucket_key, array $current_data) {
+
+ // First, check if we've already rebuilt this bucket. In some cases (like
+ // browsing a repository at some commit) it's common to issue many lookups
+ // against one commit. If that commit has been discovered but not yet
+ // fully imported, we'll repeatedly attempt to rebuild the bucket. If the
+ // first rebuild did not work, subsequent rebuilds are very unlikely to
+ // have any effect. We can just skip the rebuild in these cases.
+
+ if (isset($this->rebuiltKeys[$bucket_key])) {
+ return $current_data;
+ } else {
+ $this->rebuiltKeys[$bucket_key] = true;
+ }
+
$bucket_min = ($bucket_key * $this->getBucketSize());
$bucket_max = ($bucket_min + $this->getBucketSize()) - 1;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 12:22 AM (20 h, 48 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7707899
Default Alt Text
D9055.id21575.diff (1 KB)
Attached To
Mode
D9055: Don't try to rebuild a repository graph cache bucket more than once per request
Attached
Detach File
Event Timeline
Log In to Comment