Re: A fast JSON serializer

2016-09-15 Thread Remi Forax
> De: "John Rose" > À: "Da Vinci Machine Project" > Envoyé: Jeudi 15 Septembre 2016 21:02:14 > Objet: Re: A fast JSON serializer > On Sep 14, 2016, at 3:03 PM, Remi Forax < fo...@univ-mlv.fr > wrote: >> Another idea from the JVM Summit, >> b

Re: A fast JSON serializer

2016-09-15 Thread John Rose
On Sep 14, 2016, at 3:03 PM, Remi Forax wrote: > > Another idea from the JVM Summit, > because the JDK9 now uses fast string concatenation by default, a JSON > serializer based on reflection can be outperformed by a hand written code. > > The following code is a small JSON serializer that use

A fast JSON serializer

2016-09-14 Thread Remi Forax
Another idea from the JVM Summit, because the JDK9 now uses fast string concatenation by default, a JSON serializer based on reflection can be outperformed by a hand written code. The following code is a small JSON serializer that use the StringConcatFactory of JDK9 https://gist.github.com/f