V
V
virtualhero2017-08-09 20:28:44
PHP
virtualhero, 2017-08-09 20:28:44

Better parsing performance on js or php?

For example, there is html page data + js + css and all this is stored in js objects, which can be tens of thousands.
As a result, you will need to get a large string and push it into a file.
Which big data parsing option will work faster?
1) Process all objects with data in js itself and transfer the already prepared string with ajax to php and get a file from there.
2) Pass all objects in JSON format by Ajax to the php server, and there already get a string from the data and throw it into a file?
As I understand it, parsing will work faster on js, provided that the client has a good computer, there will be trouble on the phone. But there will be stability in php, if all the processing is on the server, then it doesn’t matter what device the client is from, the quality of the server will affect performance. These are just my thoughts, I'm not sure exactly.
Knowledgeable people help with advice.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Shashenkov, 2017-08-09
@virtualhero

And why transfer something if everything can be saved to a file on the client?
For example through this

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question