PuritysDisciple
19 Feb 2007, 1:55 PM
Im currently working on a project that has to look up and create many locations on a map (currently Google Maps API). All of these locations also have details. I was wondering which is better for server health:
Load original location
Query arround location
Load each item seperatly
or...
Load original location
Query arround location
Load all items together
Currently they all load seperatly which means that they kind of "pop" into view as youre looking at the map run your search, however it is also running anywhere from 3 - 100+ server requests which can increase the server load dramaticly.
My main question is this: If I combine these requests into one giant request will the other users on the server be less likely to be interupted? Due to IIS request limit only 4 requests can be made at a bime per processer (so 16 here), so the tought was that by running a lot of small requests other users could get their request into the middle of this massive chain of requests instead of forcing everyone to wait for the search to finish.
Any thoughts?
Load original location
Query arround location
Load each item seperatly
or...
Load original location
Query arround location
Load all items together
Currently they all load seperatly which means that they kind of "pop" into view as youre looking at the map run your search, however it is also running anywhere from 3 - 100+ server requests which can increase the server load dramaticly.
My main question is this: If I combine these requests into one giant request will the other users on the server be less likely to be interupted? Due to IIS request limit only 4 requests can be made at a bime per processer (so 16 here), so the tought was that by running a lot of small requests other users could get their request into the middle of this massive chain of requests instead of forcing everyone to wait for the search to finish.
Any thoughts?