-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OnceCell/Lock::try_insert()
#276
Labels
ACP-accepted
API Change Proposal is accepted (seconded with no objections)
api-change-proposal
A proposal to add or alter unstable APIs in the standard libraries
T-libs-api
Comments
Seconded. (I will say though that I am somewhat skeptical of this routine and it isn't clear that it pulls its weight. On the path to stabilization, I'd be interested in both how much this optimization buys us and how often it would be used.) |
This was referenced Oct 8, 2023
GuillaumeGomez
added a commit
to GuillaumeGomez/rust
that referenced
this issue
Oct 14, 2023
…, r=Mark-Simulacrum Implement `OnceCell/Lock::try_insert()` I took inspiration from [`once_cell`](https://crates.io/crates/once_cell): - [`once_cell::unsync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L551-L563) - [`once_cell::sync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L1080-L1087) I tried to change as little code as possible in the first commit and applied some obvious optimizations in the second one. ACP: rust-lang/libs-team#276 Tracking issue: rust-lang#116693
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 15, 2023
Rollup merge of rust-lang#116540 - daxpedda:once-cell-lock-try-insert, r=Mark-Simulacrum Implement `OnceCell/Lock::try_insert()` I took inspiration from [`once_cell`](https://crates.io/crates/once_cell): - [`once_cell::unsync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L551-L563) - [`once_cell::sync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L1080-L1087) I tried to change as little code as possible in the first commit and applied some obvious optimizations in the second one. ACP: rust-lang/libs-team#276 Tracking issue: rust-lang#116693
github-actions bot
pushed a commit
to rust-lang/miri
that referenced
this issue
Oct 17, 2023
…Simulacrum Implement `OnceCell/Lock::try_insert()` I took inspiration from [`once_cell`](https://crates.io/crates/once_cell): - [`once_cell::unsync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L551-L563) - [`once_cell::sync::OnceCell::try_insert()`](https://github.com/matklad/once_cell/blob/874f9373abd7feaf923a3b3c34bfb3383529c671/src/lib.rs#L1080-L1087) I tried to change as little code as possible in the first commit and applied some obvious optimizations in the second one. ACP: rust-lang/libs-team#276 Tracking issue: #116693
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
ACP-accepted
API Change Proposal is accepted (seconded with no objections)
api-change-proposal
A proposal to add or alter unstable APIs in the standard libraries
T-libs-api
Proposal
Problem statement
I would like to insert a value into a
OnceCell/Lock
and get back a reference to it while also checking if the value was already set or not.Motivating examples or use cases
This can be useful in racy conditions, where different threads or
Future
s are trying to assign to the sameOnceCell/Lock
. The "loser" should be able to get the old and new value and determine if there is any difference or what that difference is.Solution sketch
Alternatives
This proposal offers an optimization, but it's perfectly possible to do this with the existing methods:
try_insert()
would offer an optimized path that doesn't require an additionalunwrap()
.This method is currently available in
once_cell
, which as far as I'm aware was the original inspiration forstd::cell::OnceCell
andstd::sync::OnceLock
.Links and related work
once_cell::unsync::OnceCell::try_insert()
once_cell::sync::OnceCell::try_insert()
The text was updated successfully, but these errors were encountered: