Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Generator API methods #17

Merged
merged 1 commit into from
Feb 23, 2024
Merged

Add Generator API methods #17

merged 1 commit into from
Feb 23, 2024

Conversation

lucatume
Copy link
Contributor

@lucatume lucatume commented Feb 16, 2024

This PR adds the DB::generate_results and DB::generate_col methods to allow unbounded queries to run, under the hood, in a bounded manner.

The query results will be fetched in batches that will be returned by a Generator, reducing database and memory load where no alternative is possible.

Example, given a db with 100 posts, one could run the following query:

SELECT * FROM wp_posts

The following code will iterate over all posts in the database, fetching them in batches of 100 each:

$all_posts = DB::generate_results( 'SELECT * FROM wp_posts', OBJECT, 100 );

foreach( $all_posts as $post ) {
    // Do something with the post ...
}

The same can be done for columns:

$all_ids = DB::generate_col( 'SELECT ID FROM wp_posts', 0, 100 );

foreach( $all_ids as $id ) {
    // Do something with the post ID ...
}

@lucatume lucatume self-assigned this Feb 16, 2024
@lucatume lucatume marked this pull request as ready for review February 16, 2024 16:47
@lucatume lucatume requested a review from borkweb February 16, 2024 16:47
@lucatume lucatume merged commit 1546ba4 into main Feb 23, 2024
@lucatume lucatume deleted the feat/generator-api branch February 23, 2024 09:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants