-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java.lang.NullPointerException: "org.nustaq.serialization.FSTClazzInfo$FSTFieldInfo.getPossibleClasses()" #315
Comments
Same here, using as a drop in replacement for redisson. |
We have stopped using this library and all our issues are resolved. I don't think this library provides any advantage even in terms of performance. |
What are you using now? Inbuild java object serialization? |
Yes. |
I had the same exception and it was related to using the same encode instance in multiple threads, since it is not threadsafe. Make sure to use a construct like the following as described on https://github.com/RuedigerMoeller/fast-serialization/wiki/Serialization static ThreadLocal conf = new ThreadLocal() { |
I am receiving this error from class FSTObjectInput - line number 357.
java.lang.NullPointerException: Cannot load from object array because the return value of "org.nustaq.serialization.FSTClazzInfo$FSTFieldInfo.getPossibleClasses()" is null
What should I have in possibleClasses so that it does not result in NullPointerException? Here is the FSTFieldInfo for which this is failing -
I have another with same information but that works and code resolved is not equals to 1 -
The text was updated successfully, but these errors were encountered: