Re: Web Site Efficiency
"jerry_ys" <jerryys@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:04800905-0F1F-4441-A1DB-455939389F76@xxxxxxxxxxxxxxxx
Hope i'm in the right group. I'm developing a small non-commercial website
to
run on windows 2000 pro with IIS. How many simultaneous users (approx) can
this handle and what happens to the end-user if server freezes from too
many
users?
(assume an upper end desktop configuration). The heart of the system will
be the
development of a data access COMPONENT (active exe rather than dll to
better
centrally control user data access. Also setting single thread rather than
multiple thread again to better control access from the program.) Any
Comments suggestions for improved efficiency would be greatly
appreciated).
thank you
Say 10 users or so on a average server.
Understanding from your question about the .exe shows you do this the first
time possibly. Never use DCOM exes to 'centralize' data management from IIS
perspective.
Always use Apartment modeld COM servers (VB6 can create them) since the
Windows Platform _does_ optimzie your connections by pooling resources. So
forget all you learned about accessing SQL server through a db connection.
All this knowledge only is valid for single EXE files, not for IIS.
Each ASP page, can create it's own ADODB.Connection ( I assume you talk
about this) and close it afterwards. If you have say 200 web asp sessions,
there will be an effective 10 (approximately) db connections active.
compatible web farm Session replacement for Asp and Asp.Net
http://www.nieropwebconsult.nl/asp_session_manager.htm
.
Relevant Pages
- Re: Remote application lunch and terminate (IIS server)
... If the program you are trying to launch is not a real CGI application, ... What you want to do is possible, but really has NOTHING to do with IIS. ... then invoke a command on the server. ... depends on how the EXE is written. ... (microsoft.public.inetserver.iis) - Re: IIS Lockdown/URLScan - no .exes
... INFO: Using URLScan on IIS ... Either I didn't read the Docs very>>well, or didn't configure things correctly, as my server ... >>Specifically, the server would not allow any .asp,>>or .exe files. ... (microsoft.public.inetserver.iis.security) - 404.2 error clicking a link to download a file
... the .exe after they extract the files and then install the ... >Server and IIS 5.0 But on the new server running Server ... (microsoft.public.inetserver.iis.security) - .exe Downloads no longer served
... When attempting to dowload an exe from a html page from ... my iis 6.0 server I now get a 404 error or a page that ... (microsoft.public.inetserver.iis) - [NT] Heap Overrun in HTR Chunked Encoding Could Enable Web Server Compromise
... This patch eliminates a newly discovered vulnerability affecting Internet ... in IIS 4.0 and 5.0, and could likewise be used to overrun heap memory on ... allowing code to be run on the server. ... * Microsoft has long recommended disabling HTR functionality unless there ... (Securiteam) |
|