fast-serialization icon indicating copy to clipboard operation
fast-serialization copied to clipboard

FST: fast java serialization drop in-replacement

Results 127 fast-serialization issues
Sort by recently updated
recently updated
newest added

Hi, I've spent a lot of time debugging this issue lately, which started out as random `SIGSEGV`s on some of our customer servers. Here are the full details, quoting from...

I am running fst 2.48 and joda-time 2.9.9. The following test case errors most of the time: ``` public class FSTSerializationTest { private final FSTConfiguration fstConf = FSTConfiguration.createDefaultConfiguration(); public void...

bug

Unhandled exception at 0x0000000066241B5F (jvm.dll) in hs_err_pid8748.mdmp: 0xC0000005: Access violation reading location 0x0000000000340020 We have carried out stress-testing of our application where the library is used along with the Hazelcast...

Produced by an app I'm working on WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.nustaq.serialization.FSTClazzInfo (file:/Users/jamesgriffin/.m2/repository/de/ruedigermoeller/fst/3.0.1/fst-3.0.1.jar) to field java.lang.String.value WARNING: Please consider reporting this...

JDK : 1.8.0_152 version: 2.56, 2.57 test case: see the test case attachment ## exception stack ``` text com.jn.agileway.codec.CodecException: java.io.IOException: java.lang.NullPointerException at com.jn.agileway.codec.fst.FstCodec.decode(FstCodec.java:26) at com.jn.agileway.codec.tests.CodecTests.testFst(CodecTests.java:65) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)...

java.io.IOException: java.lang.ArrayIndexOutOfBoundsException at org.nustaq.serialization.FSTObjectInput.readObject(FSTObjectInput.java:247) at org.nustaq.serialization.FSTConfiguration.asObject(FSTConfiguration.java:1158) at net.oschina.j2cache.util.FSTSerializer.deserialize(FSTSerializer.java:46) at net.oschina.j2cache.util.SerializationUtils.deserialize(SerializationUtils.java:98) at net.oschina.j2cache.Level2Cache.get(Level2Cache.java:124) ... 132 common frames omitted

https://github.com/RuedigerMoeller/fast-serialization/blob/master/src/main/java/org/nustaq/serialization/FSTClazzInfo.java#L143 We have a distributed exception handling system, which treats the distributed exceptions as local. For the following case: ```java private static class UnSerializedClass {} private static class MyCustomException extends...

Hi team, I suffered the deserialization issue with fst-2.57, could you please have a look? The data was serialized with fst-2.16 and stored in DB, when I tried to deserialize...

version: 2.56 and 2.57 the source in FSTConfiguration : ```java public static FSTConfiguration createConfiguration(ConfType ct, boolean shareRefs) { return createConfiguration(ct,shareRefs); } ```

The comment in the Version annotation source file says: > support for adding fields without breaking compatibility to old streams. > * For each release of your app increment the...