6 releases

Uses old Rust 2015

0.3.1 Feb 1, 2018
0.3.0 Feb 1, 2018
0.2.0 Nov 3, 2016
0.1.2 Sep 15, 2016

#659 in Memory management

Download history 1/week @ 2023-11-06 9/week @ 2023-11-13 8/week @ 2023-11-20 15/week @ 2023-11-27 1/week @ 2023-12-04 7/week @ 2023-12-11 1/week @ 2023-12-18 13/week @ 2023-12-25 1/week @ 2024-01-01 1/week @ 2024-01-08 11/week @ 2024-01-15 6/week @ 2024-01-22 13/week @ 2024-01-29 2/week @ 2024-02-05 29/week @ 2024-02-12 101/week @ 2024-02-19

145 downloads per month

MIT license

20KB
309 lines

Status Update

Progress is blocked by missing features of rust.

  • Const generics: Specifying the buffer size for both Pool and SmallBuffer is impossible without it. For now a default has been set, but might not fit every use.

Nightly Requirements:

Nightly is required because of the next features:

  • #![feature(allocator_api)]: Custom alignment for Pool allocations

VeryFast

VeryFast is a collection of useful tools needed mostly by game developers, but fitting anyone who is focused on performance. They are focused on speed and multithreaded safety.

At the moment it supplies one useful class - Pool, which allocates objects on the heap like a Box, but allocates in batches and reuses the memory instead of deallocating when Dropped! It is similar to Arena but allows deallocation.

Documentation

Tools

Pool

Pool allocates objects on the heap in batches. All objects must be of the same type like in Vec. It allows fast multithreaded parallel allocation of objects. When objects are dropped, their memory is returned to the pool to be reused for future allocations. Only when all the objects and the Pool are dropped will the memory be released.

There are some optimisations for speed: It is possible to allocate each object on a separate CPU cache line (helps with multithreaded access to adjacent elements). The allocations use a lock-free strategy except when allocating a new batch. Deallocations also use a lock-free strategy.

The Pool is similar to various Arena implementations but it allows deallocation of elements and reuse of the memory.

SmallBuffer

A small inline-allocated buffer with expansion capabilities. Pushing values can be done done asynchronously. Reading values needs exclusive access. Removing values is only possible by draining the whole buffer.

SmallBuffer is useful as a buffer for elements that see little usage. It has a small capacity inline, so a couple messages will not cause it to allocate memory. If it receives more data than it can store, it will allocate additional memory to handle it. It will not deallocate any memory, for cases when it's likely an element that has seen a lot of usage has a higher chance to continue having high usage.

Dependencies

~15KB