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 object PicklingTest extends App { import scala.pickling.Defaults._ import scala.pickling.json._ case class X(i: Int) implicit val shitPickler: Pickler[X] = new Pickler[X] { override val tag = FastTypeTag[X] override def...

enhancement

When Play is running with hot reloating (`sbt run`), pickling can't load a very simple, sealed class. ``` play.api.Application$$anon$1: Execution exception[[RuntimeException: java.lang.ExceptionInInitializerError]] at play.api.Application$class.handleError(Application.scala:296) ~[play_2.11-2.3.8.jar:2.3.8] at play.api.DefaultApplication.handleError(Application.scala:402) [play_2.11-2.3.8.jar:2.3.8] at play.core.server.netty.PlayDefaultUpstreamHandler$$anonfun$14$$anonfun$apply$1.applyOrElse(PlayDefaultUpstreamHandler.scala:205)...

documentation

The issue I am seeing is that a `java.util.UUID` value is not pickled correctly if that value has been cast to a `scala.Any`. In my application, the value to be...

bug

I am working with something where input values are ByteBuffers, and when I test val in: ByteBuffer val ser = in.pickle val des = ser.unpickle[ByteBuffer] I consistently get in =...

enhancement

Now that the new code base is landed, could we list out the list of nobs that can be tweaked beyond "share nothing" and "static only"? Some of them are...

documentation

given https://github.com/MasseGuillaume/cats/commit/b5d25c3cd99b05b59df3ea0477d800319051285d when sbt ";core/compile;metadocCompilerPlugin/console" pickling fails with: fatal error: unpicklee cache is corrupted at 7

bug
runtime-issue

Hey, thanks a lot for the great work! This would solve a big problem for me if I could use it with Akka. Viktor mentions @ https://groups.google.com/forum/#!searchin/akka-user/pickling/akka-user/CHeusozMtuQ/lfMtqHu0FvoJ that there might...

enhancement

Hi! I've created a library using the power off scala.pickling. While I was working on that library I was struggling with `PickleFormat`. The problem is that this is solid type...

question

Hello. I'm new to this project and just tried to test Scala pickling for possible use in a medium-sized NLP project (c. 32,000 lines of code). Scala pickling looks like...

documentation