prickle icon indicating copy to clipboard operation
prickle copied to clipboard

Prickle is a library for easily pickling (serializing) object graphs between Scala and Scala.js.

Results 8 prickle issues
Sort by recently updated
recently updated
newest added

It seems this library only supports 0.6. No plan to support 1.0.0? Or please teach me some workaround to use this library when I am using scala.js 1.0.0

``` case class PipelineState(pipelineId: String, nodes: Seq[(String, Map[String, String])], edges: Set[(String, String)]) case object KeepWsAlive Unpickle[KeepWsAlive.type].fromString(Pickle.intoString(PipelineState("x", Seq.empty[(String, Map[String, String])], Set.empty))) -------------------------------- Success(KeepWsAlive) ``` This happens on both JVM and JS.

I implemented a custom PConfig and was that doesn't support shared objects. This PConfig has the behaviour that every field that is not present, returns null, instead of failing, but...

It seems regular classes could be supported just as easy, if that is what you need, why not support the same as case classes?

Hi, we are currently looking into alternative pickling libraries that can be used in Scala and Scala.JS. Trying to understand your project we failed to find the tags corresponding to...

@ocronos made a performance test where prickle has terrible performance. Something should be done about it ``` Decoding Seq[Book] with UUIDs ============================= Library ops/s size % size.gz % BooPickle 9245...

I updated the perf tests in Boopickle to use also Array[T] types and noticed that prickle doesn't support pickling them.

It would be nice to see play-json pickler (maybe as separate subproject) like it is in scala-js-picklers