pickling icon indicating copy to clipboard operation
pickling copied to clipboard

Fast, customizable, boilerplate-free pickling support for Scala

Results 100 pickling issues
Sort by recently updated
recently updated
newest added

``` scala scala> import scala.pickling._, Defaults._ import scala.pickling._ import Defaults._ scala> import json._ import json._ scala> case class Foo(list: List[String]) defined class Foo scala> Foo(List.empty).pickle :19: warning: method newTermName in...

documentation

Disclaimer: I'm not sure if what I am trying to do could in theory work, because I don't know enough about pickle theory. I'm trying to pickle a Java class...

question

``` scala package com.typesafe import akka.util.ByteString import akka.actor.Address import akka.serialization.Serializer import scala.pickling._ import scala.pickling.Defaults._ import scala.pickling.binary._ import scala.pickling.binary.BinaryPickle class SanitySpec extends AkkaUnitTest { case class MyValue(protocol: String, servicePort: Int, serviceName:...

enhancement
runtime-issue

Please add OSGi support to your library by generating the appropriate MANIFEST.MF which can be done with sbt-osgi.

enhancement

It only contains the type information: ``` scala scala> import pickling.Defaults._, pickling.json._ import pickling.Defaults._ import pickling.json._ scala> val f = new java.io.File("/a/b") f: java.io.File = /a/b scala> f.pickle res0: pickling.json.pickleFormat.PickleType...

bug
runtime-issue
unpickle-asymmetry

``` scala scala> val address = Address("akka", "some-system") address: akka.actor.Address = akka://some-system scala> import scala.pickling.Defaults._ import scala.pickling.Defaults._ scala> import scala.pickling.binary._ import scala.pickling.binary._ scala> val bytes = address.pickle.value bytes: Array[Byte] =...

bug
unpickle-asymmetry

Hi, Scala Pickling looks highly promising so that I want to migrate an existing [Eventsourced](https://github.com/eligosource/eventsourced) application which uses default Java serialization for event storage. Currently the biggest concern other than...

question

Dear all, Disclaimer: I am new to scala-pickling, so I am probably just doing something wrong. I have two source folders A and B. Folder A contains the following scala...

bug
runtime-issue

I'm looking to use this for generic serialization so unpickling would always be based on Any. I just tried this with the simple demo case: ``` scala import scala.pickling._ import...

unpickle-any

Using: ``` "org.scala-lang" %% "scala-pickling" % "0.9.1" ``` When: ``` import scala.pickling._, json._ val r1: java.lang.Byte = 13.toByte val r2 = r1.pickle ``` Then: ``` { "tpe": "java.lang.Byte" } ```...

bug
runtime-issue
unpickle-asymmetry