DEV Community

Discussion on: Preemptive Pluralization is (Probably) Not Evil

Collapse
 
martingronlund profile image
Martin Grönlund

There's even a whole discussion to be had here about arrays, locality of reference, cache eviction, false sharing, parallelization, etc. Summed up in short: data oriented design. Performance will improve vastly if you design for collections instead of objects. It's almost only stupid to think in lone objects these days.