lnx-search / datacake

Tooling for creating your own distributed systems.
MIT License
394 stars 21 forks source link

Optimise small bulk operations with `smallvec` crate #43

Closed ChillFish8 closed 1 year ago

ChillFish8 commented 1 year ago

Currently in things like the node selector, bulk operations, etc... We have a lot of areas which are liable to lots of small Vec allocations which could be avoided if we use the smallvec crate, the size should be between 4-10 items but still have a large impact.

ChillFish8 commented 1 year ago

Added