NetflixGraph Memory Optimization

Drew Koszewnik: The relationships between objects in our directed graph were generally represented with HashMaps, where HashSets of “to” objects were keyed by “from” objects. This was a lot of objects and a lot of 64-bit pointers. In the new design: Our data structure maintains two arrays. One is an integer array, and the other … Continue reading NetflixGraph Memory Optimization