GameDev.net Site Performance

Started by
36 comments, last by dave 17 years, 4 months ago
Just a small tip, if I may...

Assuming the webserver this is running on is an IIS(I can't remember, although I have seen the error pages), changing the extensions on the asp files to aspx will make it use the newer, snappier asp.net engine. It will compile the pages instead of interpret them each and every visit, like asp classic does. The only actual code change needed is to put braces() on all method calls, such as response.write or server.createobject(aka, response.write("hello")...). The .net engine will default the language to VB and all will be well.

Also, I seem to remember seeing JET engine errors from time to time. That means Access. Bad database. Change. Please.

Regards,
Eric
Advertisement
Quote:Original post by erjo
Also, I seem to remember seeing JET engine errors from time to time. That means Access. Bad database. Change. Please.


God knows where you were seeing those, as we certainly don't use Access for the main site database...

Richard "Superpig" Fine - saving pigs from untimely fates - Microsoft DirectX MVP 2006/2007/2008/2009
"Shaders are not meant to do everything. Of course you can try to use it for everything, but it's like playing football using cabbage." - MickeyMouse

I almost figured as much, but something on here has used Access, atleast in the past. It might've been the pollsystem actually... The connection calls to JET are blocking and slows everything down. I do know that I haven't gotten those errors in a long time though(a year or so atleast).

Regards,
Eric
For me, the site was taking sometimes 15-30 seconds to load a page. It is now down to approximately 2-5 seconds. Whatever you did, seems to have helped quite a bit.

I know only that which I know, but I do not know what I know.
I don't know about anyone else, but for the last few days I have had to try to reconnect a number of times on more than a few occasions to be able to see a page. I am just given a white page, with no activity on the server at all. When I do get my pages the load times are pretty fast, but its irritating to have to hit refresh four or five times to have to get anything at all.
www.aidanwalsh(.net)(.info)
Quote:Original post by aidan_walsh
I don't know about anyone else, but for the last few days I have had to try to reconnect a number of times on more than a few occasions to be able to see a page. I am just given a white page, with no activity on the server at all. When I do get my pages the load times are pretty fast, but its irritating to have to hit refresh four or five times to have to get anything at all.


Ditto.
Yeah, it's seemed a bit worse for me lately too. I'll try and find some time to look into it.

Richard "Superpig" Fine - saving pigs from untimely fates - Microsoft DirectX MVP 2006/2007/2008/2009
"Shaders are not meant to do everything. Of course you can try to use it for everything, but it's like playing football using cabbage." - MickeyMouse

I *think* restarting your session be closing and reopening your browser helps as well, atleast it seems to for me.

This topic is closed to new replies.

Advertisement