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
Currently serde_arrow supports dictionaries of string values (categories), as this the most common use case. Arrow2 allows all hashable types to be used in a dictionary array. It actually uses only the hash and does not test for equality.
Q: How can serde_arrow support more general dictionary types?
Only use hashses? (as arrow2 does)
Use the new Value object to fully collect serialized objects in memory?
The text was updated successfully, but these errors were encountered:
chmp
changed the title
Implement StringDictionaries
Implement Dictionary Arrays
Feb 12, 2023
chmp
changed the title
Implement Dictionary Arrays
Full support for dictionary arrays
Apr 2, 2023
Currently
serde_arrow
supports dictionaries of string values (categories), as this the most common use case. Arrow2 allows all hashable types to be used in a dictionary array. It actually uses only the hash and does not test for equality.Q: How can
serde_arrow
support more general dictionary types?arrow2
does)Value
object to fully collect serialized objects in memory?The text was updated successfully, but these errors were encountered: