How many users can a .net server handle?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default How many users can a .net server handle?

    how many user connections can a .net server connecting to a sql2000
    server, handle before degradation takes place. What is the general
    rule of thumb, given a Dual P4 2Ghz Ultra 160 SCSI .net server with
    2GB Ram?

    Tom Guest

  2. Similar Questions and Discussions

    1. php tcp server - sockets - how to handle more clients at once ?
      Hello I've modified the tcp-server example from http://www.php.net/sockets The server waits for a connection, then for \r\n and disconnect the...
    2. Heavy server load with few users
      Hi, i'm running a flash media server 2.0.4 on Suse 10.1 and a video/audio-flashchat. When i have about 9 Users, 3 sending, all others just...
    3. How to handle multiple users uploading?
      I'm curious if anyone has a prefered method to allow people to sign up for an account, and create a space for them to upload files. Use something...
    4. How To: handle DataGrid row Click Event that passes rows column values to server-side code behind function
      I've looked through many posted messages, and have tried several things but have not seemed to solve this (what you'd think would be a simple)...
    5. FTP in server 2003: How to add users for the FTP site only?
      Hi, We are running iis ftp on server 2003 and want to allow customers to read (and sometimes write permission too) files from their directories....
  3. #2

    Default Re: How many users can a .net server handle?

    There isn't any. It all depends on what type of requests and what exactly
    does each request do. The number can be from a request per couple seconds
    (if you really don't know what you're doing) to thousands requests per
    second.

    Jerry

    "Tom" <root@127.0.0.1> wrote in message
    news:7lkoivk21ukj5b9h5icf2l5gto3q8fg3e0@4ax.com...
    > how many user connections can a .net server connecting to a sql2000
    > server, handle before degradation takes place. What is the general
    > rule of thumb, given a Dual P4 2Ghz Ultra 160 SCSI .net server with
    > 2GB Ram?
    >

    Jerry III Guest

  4. #3

    Default Re: How many users can a .net server handle?

    Hello Tom,

    Thanks for posting here.

    Jerry and Natte are right. The performance depends on the architectureof your web application, such as how it uses data
    access, how to transaction, and etc. The best way to judge whether your system could afford it is to test it by using
    Application Center Test. In the test, we could identify the bottleneck of the performance and improve it.

    You could also get idea from these articles:
    "Performance Comparison: Data Access Techniques"
    [url]http://msdn.microsoft.com/library/en-us/dnbda/html/bdadotnetarch031.asp?frame=true[/url]

    "Developing High-Performance ASP.NET Applications"
    [url]http://msdn.microsoft.com/library/en-us/cpguide/html/cpcondevelopinghigh-performanceaspnetapplications.asp?[/url]
    frame=true

    HTH.

    Best regards,
    Yanhong Huang
    Microsoft Online Partner Support

    Get Secure! - [url]www.microsoft.com/security[/url]
    This posting is provided "AS IS" with no warranties, and confers no rights.

    --------------------
    !From: "Jerry III" <jerryiii@hotmail.com>
    !References: <7lkoivk21ukj5b9h5icf2l5gto3q8fg3e0@4ax.com>
    !Subject: Re: How many users can a .net server handle?
    !Date: Sat, 2 Aug 2003 20:51:37 -0700
    !Lines: 16
    !X-Priority: 3
    !X-MSMail-Priority: Normal
    !X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    !X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    !Message-ID: <e$yUKKXWDHA.2284@TK2MSFTNGP10.phx.gbl>
    !Newsgroups: microsoft.public.dotnet.framework.aspnet
    !NNTP-Posting-Host: h-69-3-117-40.lsanca54.covad.net 69.3.117.40
    !Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    !Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:164382
    !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
    !
    !There isn't any. It all depends on what type of requests and what exactly
    !does each request do. The number can be from a request per couple seconds
    !(if you really don't know what you're doing) to thousands requests per
    !second.
    !
    !Jerry
    !
    !"Tom" <root@127.0.0.1> wrote in message
    !news:7lkoivk21ukj5b9h5icf2l5gto3q8fg3e0@4ax.com.. .
    !> how many user connections can a .net server connecting to a sql2000
    !> server, handle before degradation takes place. What is the general
    !> rule of thumb, given a Dual P4 2Ghz Ultra 160 SCSI .net server with
    !> 2GB Ram?
    !>
    !
    !
    !


    Yan-Hong Huang[MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139