什么时候选择服务器端或客户端最好?我有一个 PHP 函数,例如:
function insert(argument)
{
//do some heavy MySQL work such as sp_call
// that takes near about 1.5 seconds
}
我必须调用这个函数大约 500 次。
for(i=1;i<=500;i++)
{
insert(argument);
}
我有两个选择:
a) call through loop in PHP(server-side)-->server may timed out
b) call through loop in JavaScript(AJAX)-->takes a long time.
如果有第三个,请推荐最好的一个。