If I’m showing 10 to 100k items using a fetch request property wrapper in a list view on SwiftUI, how does it manage memory?
I’m aware core data uses faulting to only load entities when necessary. But for example if each list row is accessing the name attribute of each entity, won’t all entities be loaded into memory? Does the entities become faults again when going out of view in the list?