vote up 0 vote down star

I'm using jQuery and use $.ajax to send out request.

My computer is pretty slow(which can be fixed by adding updating the memory),

and the request times out frequently.

But I've found that although it's timeout,

process at server side doesn't terminate.

Is is normal or something wrong?

flag

40% accept rate

1 Answer

vote up 0 vote down check

We are using HTTP (stateless protocol). When $.ajax hits a request to the server, Server takes long time to complete the job and $.ajax goes for timeout, Still the job in server will be running. (Which is Normal because we are using HTTP).

The $.ajax timeout is only for client not for server.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.