-
Notifications
You must be signed in to change notification settings - Fork 163
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
Recommend GHCJS serialization library #547
Comments
That's a bit hard to answer as is. What kind of serialization use case do you have in mind? |
For example a Haskell REST Api serving Haskell data structures to a GHCJS powered client. |
I settled for persist after consulting this I also tested browsers I see significant 10x speedups in my usecase where GHCJS-compiled JS requests Haskell Values generated on and to be serialized by a Haskell server and de-serializes it back into Haskell values. Deserialization time went from 4s using Aeson (4MB serialized JSON) down to 0.4s when using Persist (3MB serialized). |
Wonderful data! Thanks! |
To clarify, you found that |
You are right, see my updated response |
Could reflex-platform devs/users share their experiences with different serialization libraries?
Is there a clear winner?
Thanks
The text was updated successfully, but these errors were encountered: