After checking it out I'd be careful of the information presented as a lot of it is false or misleading.
Like streaming entities in an out reduces the amount of entities that have to be computed by the client cpu. Culling and adding objects depending on what's in the client's sphere visual sphere does not decrease the cpu requirements in fact it generally increases the CPU utilization as it has to maintain the object trees in memory. All client-side object container streaming does is reduce the client's ram memory requirements as not all objects for the game world need to be loaded at game launch and can be added and removed at runtime. Its why games have load screens and even now most games do not utilize this method as it's demanding on the CPU and hard disk which consoles struggle with. You will also find that players who play SC and are not utilizing SSD drives will also be negatively impacted as they move around the verse.
The idea that all clients need to keep track of all objects on each game tick is also false without client container streaming. While servers do need to keep track of all objects on each tick clients are only feed entity changes within their sphere of influence. This is mostly due to bandwidth limitations and not due to cpu/memory limitations as updating object list location changes per tick is simple. This is why CIG was able to implement client-side object container streaming without needing to change the server code. All they did was change the client-side game engine to not load all objects until the client gets an update on an object id it currently does not have in memory.
Client-side object container streaming is also loading objects that are currently not visible to the client but are still nearby this prevents the situation of objects that peek around a corner from not showing up for a few seconds due to needing to be loaded before rendered. I do not remember if they are using a sphere or a teardrop for object load/culling.
As Clive Johnson explains
https://www.reddit.com/r/starcitizen/comments/bhyd21
View: https://www.reddit.com/r/starcitizen/comments/bhyd21/how_is_servermeshing_possible_dev_response/
They hope that if Static Server Meshing is used at all it's only implemented at deep space boundaries so that issues with players at the boundary line not in qt is limited.