Is this an efficient way to serialize JSON data in Java?

I do not know if this question makes sense or not. I have a huge amount of JSON data with me. I get this data from the server to the client side.

Is it good to serialize a JSON object on the server side?

0
source share
2 answers

I have a huge amount of JSON data with me.

Is it good to serialize a JSON object on the server side?

No. JSON is already serialized to that point format.

If you have data other than JSON that you want to deliver to the client, then if this is not a string, you need to serialize it so that it is in the transmitted format.

+1
source
+1
source

All Articles