[12.x] Add Eloquent memory optimization features for large datasets #55215
+557
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Memory Optimization in Eloquent
This page introduces new methods for memory optimization in Eloquent that help reduce memory consumption when working with large datasets.
Memory-Efficient Queries
chunkByMemory
The new
chunkByMemory
method allows you to process data by automatically adjusting chunk sizes based on memory usage:The first parameter specifies the maximum allowed memory consumption in megabytes. The method automatically adjusts chunk sizes based on real-time memory usage.
lazyByMemory
The
lazyByMemory
method works similarly tolazy
, but with automatic chunk size adjustment based on memory:This method creates a
LazyCollection
that loads records lazily with smart memory management.Relationship Optimization
withLimited
The new
withLimited
method allows you to load relationships with limits:This loads users with a maximum of 10 latest posts and 5 latest comments per post.
Model Optimization
optimizeMemory
The
optimizeMemory
method lets you remove unnecessary relationships and attributes from models:cleanup
The
cleanup
method removes all relationships and extra attributes from a model:optimizedCollection
The static
optimizedCollection
method creates a memory-optimized collection of models:Practical Examples
Large Data Processing
Memory-Efficient Relationship Loading
Big Data Reporting
Benefits and Comparisons
chunk()
chunkByMemory()
lazy()
lazyByMemory()
with()
withLimited()
optimizeMemory()
Tips and Recommendations
chunkByMemory
for cron jobs and long-running taskslazyByMemory
for APIs returning large datasetswithLimited
when working with complex relationshipscleanup
after processing large datasets to free memoryselect()
to remove unnecessary columns in complex queries