Ian O'Connell
Ian O'Connell
Sorry my bad, git foo on cmd line broke stuff and closed all of these
+1 On Monday, January 27, 2014, P. Oscar Boykin [email protected] wrote: > Something like: > > trait Encoder[T, U] { > def apply(t: T): U > // and andThen, toFn,...
We don't expect Chill serialization to be stable across jvm launches/recompiles so it should be fine to add it in to the natural place in the constructor. Would happily take...
Chill was never designed to be used as a long term serialization format, since the underlying kryo itself wasn't really designed for this. Kryo has become a bit more stable...
Chill has no tests requiring these numbers are constant from build to build. So i think you can propose a different tack and all the tests here. But barring that...
Well we have as our repos got bigger, more use cases. Your code paths can never touch another pre-compiled library using a newer kryo that isn't binary compatible unless your...
Sorry my bad, git foo on cmd line broke stuff and closed all of these
Sorry my bad, git foo on cmd line broke stuff and closed all of these
Generally any issues like this I would say 3 things: -> Define a custom serializer for your class, enable registration required and provide the serializer. -> For any repo, provide...
Most of the ones under chill-scala are probably suitable for reference https://github.com/twitter/chill/blob/develop/chill-scala/src/main/scala/com/twitter/chill/BitSetSerializer.scala is probably a decent one