6 stable releases

1.0.5 Mar 28, 2024
1.0.4 Nov 7, 2021
1.0.3 Nov 4, 2021

#729 in Memory management

Download history 1083/week @ 2025-12-24 1919/week @ 2025-12-31 3204/week @ 2026-01-07 1259/week @ 2026-01-14 4126/week @ 2026-01-21 3496/week @ 2026-01-28 4041/week @ 2026-02-04 2848/week @ 2026-02-11 3564/week @ 2026-02-18 4281/week @ 2026-02-25 4796/week @ 2026-03-04 6073/week @ 2026-03-11 6539/week @ 2026-03-18 4687/week @ 2026-03-25 4570/week @ 2026-04-01 4067/week @ 2026-04-08

21,311 downloads per month
Used in 8 crates (via lib-ruby-parser)

MIT license

9KB
245 lines

alloc-from-pool

This crate implements object pool.

Basic usage

use alloc_from_pool::Pool;

// dummy struct
struct Foo([u8; 50]);

// pool has size = 0 by default
let pool = Pool::<Foo>::new();

// performs allocation
let foo1 = pool.alloc(Foo([1; 50]));
// returns memory back to pool
drop(foo1);

// re-uses the value that we've just returned back to pool
let foo2 = pool.alloc(Foo([2; 50]));
// returns memory back to pool
drop(foo2);

// it also possible to create a Factory based on a pool
// that holds a reference to initial Pool
let factory = pool.factory();
// Factory has the same `alloc` method:
let foo3 = factory.alloc(Foo([3; 50]));
// it uses the same pool, and also returns back to the same pool
drop(foo3);

Benchmarks

You can run cargo bench:

test alloc_with_box  ... bench:          56 ns/iter (+/- 6)
test alloc_with_pool ... bench:           7 ns/iter (+/- 0)

No runtime deps