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.
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).