Page MenuHomePhabricator

Add PhabricatorQueryIterator, for buffered iteration over a CursorPagedPolicyAwareQuery
ClosedPublic

Authored by epriestley on May 14 2018, 4:23 PM.
Tags
None
Referenced Files
F14076445: D19450.diff
Thu, Nov 21, 5:26 PM
Unknown Object (File)
Mon, Nov 18, 4:26 AM
Unknown Object (File)
Sun, Nov 17, 7:08 PM
Unknown Object (File)
Wed, Nov 13, 7:14 PM
Unknown Object (File)
Sat, Nov 9, 9:54 PM
Unknown Object (File)
Wed, Nov 6, 5:58 AM
Unknown Object (File)
Oct 9 2024, 9:37 AM
Unknown Object (File)
Sep 10 2024, 11:26 AM
Subscribers
None

Details

Summary

See D19446. This should make it easier to process larger, more complex result sets in constant memory.

Today, LiskMigrationIterator takes constant memory but can't apply needX() reqeusts or withY(...) constraints.

Using a raw Query can handle this stuff, but requires memory proportional to the size of the result set.

Offer the best of both worlds: constant memory and full access to the power of Query classes.

Test Plan

Used this script to iterate over every commit, saw sensible behavior:

list-commits.php
<?php

require_once 'scripts/init/init-script.php';

$viewer = PhabricatorUser::getOmnipotentUser();

$query = id(new DiffusionCommitQuery())
  ->setViewer($viewer);

$iterator = new PhabricatorQueryIterator($query);
foreach ($iterator as $commit) {
  echo $commit->getID()."\n";
}

Diff Detail

Repository
rP Phabricator
Branch
query1
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 20327
Build 27604: Run Core Tests
Build 27603: arc lint + arc unit