如何通过ajax减少大数组的传输时间

enter image description hereDescription

my code is transferring json object from server to client using php,js trough ajax. json object consist of big array (200X200) of integers.

server is localhost

Problem

Data transfer is getting delay so that it effect the js web output, please let me know any points to tackle this problem.

enter image description here

If you have the ability to change the format in which the server expects the data, then you can try a more efficient format than JSON, such as raw binary data. In that case, you can shrink the payload to 200x200x4 bytes (or even less, depending on the range of values you want to send).