Common Rails optimization noted by Caio Almeida: replacing `each` with `find_each` changes five letters but processes records in batches instead of loading an entire 1,000-item collection into memory at once, avoiding memory explosions on large datasets. Example of understanding what high-level frameworks actually do under the hood.