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
would it be possible to add an option when creating an AbstractSublevel (or just remove the requirement altogether) to allow for names with non-ASCII characters?
it seems a bit odd that i could manually create keys for put/get/del/etc. that contain non-ASCII characters, but i cant use sublevel (which is a far nicer experience due to the behavior of keys/iterator/etc.)
for example,
level.get("!foo!bar")
vs
let sublevel = level.sublevel("foo")
sublevel.get("bar")
The text was updated successfully, but these errors were encountered:
would it be possible to add an option when creating an
AbstractSublevel
(or just remove the requirement altogether) to allow for names with non-ASCII characters?it seems a bit odd that i could manually create keys for
put
/get
/del
/etc. that contain non-ASCII characters, but i cant usesublevel
(which is a far nicer experience due to the behavior ofkeys
/iterator
/etc.)for example,
vs
The text was updated successfully, but these errors were encountered: