user1199434
user1199434

Reputation: 723

webpage temporarily down / not loading (due to too many connections?)

I've been working on updating my page using javascript/jquery and have now run into a small problem. I'm using ajax to update a comment area on my page and every so often my page will stop loading altogether and i can't load any of the other pages on my domain. After a few hours or so I can access it again, so i was wondering if it could have something to do with how many connections are in use? I've only had this problem since I added the javascript to my page, any ideas what could be causing this?

Upvotes: 0

Views: 143

Answers (1)

Cengiz Can
Cengiz Can

Reputation: 1302

There can be many reasons behind this. I will name the two which comes to my mind right now

  • Your server (Web, Database) might be getting overloaded with too many requests.
  • The JavaScript might be using Comet technique which involves many alive HTTP connections thus limiting your server resources while there are active clients.

Upvotes: 1

Related Questions