HunterZ / rustmods

Mods for the PC game Rust
MIT License
0 stars 0 forks source link

DPVP: Investigate ToArray() usage #11

Closed HunterZ closed 1 month ago

HunterZ commented 1 month ago

DynamicPVP calls .ToArray() a lot in order to make temporary copies of containers. This should probably be minimized if possible to avoid memory churn.

HunterZ commented 1 month ago

This seems to only be used on startup, for API support, and to meet Zone Manager API requirements, so I don't think I need to worry about this for now.