You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like only inner should be wrapped in Arc (https://github.com/qoollo/pearl/blob/master/src/storage/core.rs#L43), because it is actually passed outside. All inner fields like safe, next_blob_id, blobs does not pass outside (from the first glance), so it looks like Arc on them can be safely removed
The text was updated successfully, but these errors were encountered:
Looks like only
inner
should be wrapped inArc
(https://github.com/qoollo/pearl/blob/master/src/storage/core.rs#L43), because it is actually passed outside. All inner fields likesafe
,next_blob_id
,blobs
does not pass outside (from the first glance), so it looks likeArc
on them can be safely removedThe text was updated successfully, but these errors were encountered: