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
There is nothing intrinsic about the slice-able interface that makes it immutable. Slicts are currently immutable to avoid inconsistency in the back-end dictionary. Slicts store references to the dictionary, not the (key, value)s themselves, so operations on Slicts would be seen by all other Slicts of the same dictionary.
Adding items directly to CachedSlicts would be more efficient than adding items to the back-end dictionary and calling update_cache.
The text was updated successfully, but these errors were encountered:
There is nothing intrinsic about the slice-able interface that makes it immutable. Slicts are currently immutable to avoid inconsistency in the back-end dictionary. Slicts store references to the dictionary, not the (key, value)s themselves, so operations on Slicts would be seen by all other Slicts of the same dictionary.
Adding items directly to CachedSlicts would be more efficient than adding items to the back-end dictionary and calling
update_cache
.The text was updated successfully, but these errors were encountered: