22 stable releases

1.2.4 Feb 6, 2024
1.2.3 Sep 9, 2023
1.2.1 Jul 12, 2023
1.1.11 Jun 16, 2023
0.1.3 Jun 12, 2023

#195 in Concurrency

Download history 57/week @ 2023-12-18 8/week @ 2024-01-01 33/week @ 2024-01-29 130/week @ 2024-02-05 9/week @ 2024-02-12 56/week @ 2024-02-19 35/week @ 2024-02-26 20/week @ 2024-03-04 25/week @ 2024-03-11 74/week @ 2024-03-18 87/week @ 2024-03-25 206/week @ 2024-04-01

394 downloads per month

MIT license

200KB
1.5K SLoC

Trc

MIT License Build status Docs status Tests status

Trc is a performant heap-allocated smart pointer for Rust that implements thread reference counting. Trc stands for: Thread Reference Counted. Trc provides a shared ownership of the data similar to Arc<T> and Rc<T>. It implements thread reference counting, which is based on the observation that most objects are only used by one thread. This means that two reference counts can be created: one for thread-local use, and one atomic one for sharing between threads. Thread reference counting sets the atomic reference count to the number of threads using the data.

A cycle between Trc pointers cannot be deallocated as the reference counts will never reach zero. The solution is a Weak<T>. A Weak<T> is a non-owning reference to the data held by a Trc<T>. They break reference cycles by adding a layer of indirection and act as an observer. They cannot access the data directly, and must be converted back into a Trc. Weak does not keep the value alive (which can be dropped), and only keeps the backing allocation alive.

To soundly implement thread safety Trc is !Send and !Sync. To solve this, Trc introduces a SharedTrc<T>, which is Send and Sync. SharedTrc is the only way to safely send a Trc's data across threads without using a Weak. See SharedTrc for it's API, which is similar to that of Weak.

Because Trc is not part of the standard library, the CoerceUnsized and Receiver traits cannot currently be implemented by default. However, Trc provides dyn_unstable trait which enables the above traits for Trc and SharedTrc and must be used with nightly Rust (cargo +nightly ...).

Examples

See examples here.

Benchmarks

Click here for more benchmarks. Multiple different operating systems, CPUs, and architectures are tested.

Trc vs Arc performance

Use

To use Trc, simply run cargo add trc, or add trc = "1.2.3". Optionally, you can always use the latest version by adding trc = {git = "https://github.com/EricLBuehler/trc.git"}.

Dependencies