jQuery.each(parameters, function(i, value) {
params = "name1=value1;name2=value2;name3=valu3";
jQuery
.
ajax
(
{
type : "get",
url : "url",
contentType : "application/x-www-form-urlencoded",
datatype : "json",
crossDomain : true,
data : params,
context : this,
async : true,
success
:
function
(
response
)
{
}
}
I have increased the ajax performance by using the above. I have heard that it can be increased more by using data streams.
how can make app faster by getting the data from the restful url faster by running requests in parallel.