fast-serialization
fast-serialization copied to clipboard
FST: fast java serialization drop in-replacement
Hi Ruediger, How are you !! I am getting the same issue again, while deserializing arraylist object. I am using FST 2.40 version. Please see below testcase, public class EntitySuperClass...
I've run in to a couple of problems since we started compiling against the Android API 28 (as all of us have to do latest November). Interesting enough the issues...
Serializing an object directly fails java.lang.RuntimeException: java.io.IOException: java.lang.NullPointerException at com.jfinal.plugin.redis.serializer.FstSerializer.valueFromBytes(FstSerializer.java:78) at com.jfinal.plugin.redis.Cache.valueFromBytes(Cache.java:1217) at com.jfinal.plugin.redis.Cache.get(Cache.java:91)
Hi, Could you tell me how can I change Version annotation capabilities to more than 127? Why this limitation applied? Thank you
Hi there, I found a concurrent issue in `FSTInputStream`. Here is my scenario: Basically, I am trying to do a merge sort from 4 streams. And I am doing the...
what is the different of FSTConfiguration and DefaultCoder ? Can I use in this way? ` static FSTConfiguration fstConfiguration = FSTConfiguration.createStructConfiguration(); Map map = new HashMap(); map .put("dddd", bytes); fstConfiguration.asByteArray(map);...
Under JDK 12 the following warnings occur: ``` WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.nustaq.serialization.FSTClazzInfo (file:/D:/Program%20Files/.m2/repository/de/ruedigermoeller/fst/2.57/fst-2.57.jar) to field java.lang.String.value WARNING: Please consider reporting...
io.netty.handler.codec.EncoderException: java.lang.RuntimeException: Unsupported backward compatibility mode for class 'java.util.Locale'. Pls register a Custom Serializer to fix at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:125) [netty-codec-4.1.13.Final.jar:4.1.13.Final] at org.redisson.client.handler.CommandEncoder.write(CommandEncoder.java:63) ~[redisson-2.10.0.jar:na] at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) [netty-transport-4.1.13.Final.jar:4.1.13.Final] at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:730) [netty-transport-4.1.13.Final.jar:4.1.13.Final] at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:816)...
I've use a 3rd Object, and want to serialize XXObject[] directly. In Serialization: ``` FSTConfiguration` configuration = FSTConfiguration.createDefaultConfiguration(); configuration.registerClass(XXObject[].class); configuration.registerClass(XXObject.class); byte barray[] = configuration.asByteArray(this.rbs); Files.write(Paths.get(this.fileName), barray); ``` When I deserializeation,...
Version : 2.56 I have a problem when deserializing a byte array which was serialized by FST to be transfered by socket. WHen I try to deserialize it, it causes...