Open qdbplang opened 1 year ago
Changing the allocator is one of the low hanging fruits for improving performance. We should change the current one to mimalloc, an allocator designed by Microsoft for similar patterns to qdbp.
The pool allocator never frees freelists that are mostly empty. We should do this however
Also, potentially use linked list within contiguous memory for pool allocator?
Changing the allocator is one of the low hanging fruits for improving performance. We should change the current one to mimalloc, an allocator designed by Microsoft for similar patterns to qdbp.