Crates.io | easy-pool |
lib.rs | easy-pool |
version | 0.2.7 |
source | src |
created_at | 2022-02-04 16:38:14.793395 |
updated_at | 2022-07-18 23:01:00.935646 |
description | An easy way to reuse your objects without reallocating memory every time. |
homepage | |
repository | https://github.com/netskillzgh/easy-pool |
max_upload_size | |
id | 526906 |
size | 38,551 |
[dependencies]
easy-pool = "0.2.7"
An easy way to reuse your objects without reallocating memory every time.
use std::sync::Arc;
use easy_pool::{Clear, EasyPoolMutex, PoolMutex};
// It will create the pool and create the functions T::create_with & T::create.
// This derive is optional but you have to create the pool yourself.
// Like this : let pool = Arc::new(PoolMutex::with_config(1024, 1024));.
#[derive(EasyPoolMutex, Default)]
struct Test {
pets: Vec<String>,
}
impl Clear for Test {
fn clear(&mut self) {
self.pets.clear();
}
}
fn main() {
// Easiest way.
let mut test = Test::create_with(|| Test {
pets: Vec::with_capacity(100),
});
assert_eq!(test.pets.capacity(), 100);
test.pets.push("Cat".to_string());
assert_eq!(test.pets.first().unwrap(), "Cat");
test.pets.extend(vec!["Dog".to_string(); 100]);
assert_eq!(test.pets.len(), 101);
assert_eq!(test.pets.capacity(), 200);
drop(test);
// The function create will reuse the old "test".
let test = Test::create_with(|| Test {
pets: Vec::with_capacity(100),
});
assert_eq!(test.pets.len(), 0);
assert_eq!(test.pets.capacity(), 200);
// Or more complex.
let pool = Arc::new(PoolMutex::with_config(1024, 1024));
let result = pool.create_with(|| Test {
pets: Vec::with_capacity(100),
});
assert_eq!(result.pets.capacity(), 100);
}
Important points to know:
The pool is fully thread safe.
The create_with function will execute the FnOnce if no object is available in the pool. If an object is available, the pool will retrieve the object and execute the clear () function.
The create () function will create the object with the default () function if no object is available in the pool. If an object is available, the pool will retrieve the object and execute the clear () function.