sociomantic-tsunami / swarm

Asynchronous client/node framework library
Boost Software License 1.0
14 stars 26 forks source link

Use the freelist allocator for the request scheduler's map buckets #363

Closed gavin-norman-sociomantic closed 5 years ago

gavin-norman-sociomantic commented 5 years ago

The default allocator uses new/delete every time, which leads to unwanted GC cycles. The freelist allocator avoids this.