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
{{ message }}
This repository has been archived by the owner on Feb 20, 2019. It is now read-only.
I need to have a reference to those picklers/unpicklers because there are some call sites that don't know the type parameter and they need to be still able to pickle/unpickle.
Scala pickling gives this error:
- Encountered a case class (fp.model.Transformed) where we could not find all the constructor parameters. This may be because some fields are marked transient.
I'd propose to ignore completely implicits that are caught by any picklable entity by default. Therefore, they won't be pickled/unpickled, which I think it's fine because conceptually implicits are not meant for that goal.
The text was updated successfully, but these errors were encountered:
I have a case class defined like this:
I need to have a reference to those picklers/unpicklers because there are some call sites that don't know the type parameter and they need to be still able to pickle/unpickle.
Scala pickling gives this error:
I'd propose to ignore completely implicits that are caught by any picklable entity by default. Therefore, they won't be pickled/unpickled, which I think it's fine because conceptually implicits are not meant for that goal.
The text was updated successfully, but these errors were encountered: