mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Don't put objects into the query workspace by default
Summary: Ref T8731. I think the issue is that some `ProjectQuery` (without needImages()) populates the query workspace, then the "real" one hits the workspace. Instead, only populate the workspace from ObjectQuery, so we know that objects in the workspace always have whatever ObjectQuery attaches to them. Test Plan: Verified this didn't destroy the cache hitrate, but I can't repro the original issue locally per se. Reviewers: btrahan Reviewed By: btrahan Subscribers: chad, epriestley Maniphest Tasks: T8731 Differential Revision: https://secure.phabricator.com/D13516
This commit is contained in:
parent
28e0af5a62
commit
d5e4d96086
1 changed files with 0 additions and 22 deletions
|
@ -256,7 +256,6 @@ abstract class PhabricatorPolicyAwareQuery extends PhabricatorOffsetPagedQuery {
|
|||
}
|
||||
|
||||
if ($visible) {
|
||||
$this->putObjectsInWorkspace($this->getWorkspaceMapForPage($visible));
|
||||
$visible = $this->didFilterPage($visible);
|
||||
}
|
||||
|
||||
|
@ -470,27 +469,6 @@ abstract class PhabricatorPolicyAwareQuery extends PhabricatorOffsetPagedQuery {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* Convert a result page to a `<phid, PhabricatorPolicyInterface>` map.
|
||||
*
|
||||
* @param list<PhabricatorPolicyInterface> Objects.
|
||||
* @return map<phid, PhabricatorPolicyInterface> Map of objects which can
|
||||
* be put into the workspace.
|
||||
* @task workspace
|
||||
*/
|
||||
protected function getWorkspaceMapForPage(array $results) {
|
||||
$map = array();
|
||||
foreach ($results as $result) {
|
||||
$phid = $result->getPHID();
|
||||
if ($phid !== null) {
|
||||
$map[$phid] = $result;
|
||||
}
|
||||
}
|
||||
|
||||
return $map;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Mark PHIDs as in flight.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue