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
In the experiment struct, one can save data but cannot access.
ie:
ex =Experiment("/tmp/tmp.jlso")
ex[:test] =1println(ex[:test])
will claim that :test key already exists, attempt to create a new key due to the collision, but then not find the key as there's no key. seems like the logic in _handlecollision is a little wonk.
The text was updated successfully, but these errors were encountered:
In the experiment struct, one can save data but cannot access.
ie:
will claim that
:test
key already exists, attempt to create a new key due to the collision, but then not find the key as there's no key. seems like the logic in_handlecollision
is a little wonk.The text was updated successfully, but these errors were encountered: