Skip to content

Releases: al8n/objectpool

v0.1.0

24 May 17:46
ef6d5d3
Compare
Choose a tag to compare

objectpool

Yet another lock-free object pool.

Features

  • Lock free, backed by concurrent safe queue.
  • Builtin reference counter, no Arc wrapper required.
  • Simple APIs and support no_std environment.
  • Automatically put object back to pool.

Why this crate?

I need an object pool that supports the no_std environment. Unfortunately, none of the object-pool, lockfree-object-pool and sharded-slab support no_std.