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
I imagine since you already have the ability to hash character vectors, it may not be too difficult to add the ability to hash serialized versions of other objects.
The hashing of character vectors is not actually related to serialization, as I am just converting them to std::strings and using the default boost::hash to generate hash values.
Serializing objects efficiently would require performing this from the C++ side (most likely using R's internal serialization functions), and this would be a nontrivial feature to implement. While having the ability to hash objects other than simple vectors would be nice, it's not terribly high on my priority list as I made a conscious decision from the beginning to trade versatility for better performance. That being said, I'd be happy to review a well-written pull request.
I imagine since you already have the ability to hash character vectors, it may not be too difficult to add the ability to hash serialized versions of other objects.
The text was updated successfully, but these errors were encountered: