473,804 Members | 2,116 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Will the code be much different if requirement on the number ofmaximum concurrent visitors is greatly different?

It is said as for code, developing a website that can stand 10,000
concurrent visitors is much different from developing a website that
can stand 1,000 concurrent visitors, is it true?
Dec 21 '07 #1
6 1444

"tenxian" <ma**********@g mail.comwrote in message
news:99******** *************** ***********@i29 g2000prf.google groups.com...
It is said as for code, developing a website that can stand 10,000
concurrent visitors is much different from developing a website that
can stand 1,000 concurrent visitors, is it true?
it's been said by an idiot then!
Dec 21 '07 #2
NC
On Dec 20, 4:15 pm, tenxian <mailtumen...@g mail.comwrote:
>
It is said as for code, developing a website that can
stand 10,000 concurrent visitors is much different from
developing a website that can stand 1,000 concurrent
visitors, is it true?
Since I don't know how to convert "concurrent visitors" into a more
commonly used unit (such as requests per second), I can't answer your
question as asked. However, there is one thing that sets high-load
application development apart; the application design should conform
to the expected deployment environment. In practice, it means that
applications that are to run on top of replicated databases can read
from any DB server in the replicating setup, but must write to one and
only one -- the master. So the application must maintain two separate
DB access routes -- one for reading, the other for writing.

Cheers,
NC
Dec 21 '07 #3
"NC" <nc@iname.comwr ote in message
news:96******** *************** ***********@i29 g2000prf.google groups.com...
On Dec 20, 4:15 pm, tenxian <mailtumen...@g mail.comwrote:
>>
It is said as for code, developing a website that can
stand 10,000 concurrent visitors is much different from
developing a website that can stand 1,000 concurrent
visitors, is it true?

Since I don't know how to convert "concurrent visitors" into a more
commonly used unit (such as requests per second), I can't answer your
question as asked. However, there is one thing that sets high-load
application development apart; the application design should conform
to the expected deployment environment.
You mean "production " environment.
Dec 21 '07 #4
It is said as for code, developing a website that can stand 10,000
concurrent visitors is much different from developing a website that
can stand 1,000 concurrent visitors, is it true?
Well, an application that *only* can stand 1,000 concurrent visitors is
probably different from one that can only stand 10,000.

But if you really want to push the limits, you will have to know where
the weak spots of the system are. If they are in your software, you will
either have to fix that or work around them in other ways (by
load-balancing servers, for instance).

Regards,
--
Willem Bogaerts

Application smith
Kratz B.V.
http://www.kratz.nl/
Dec 21 '07 #5
On Dec 21, 2:15*am, tenxian <mailtumen...@g mail.comwrote:
It is said as for code, developing a website that can stand 10,000
concurrent visitors is much different from developing a website that
can stand 1,000 concurrent visitors, is it true?
It's all about the aim of the project. A 1000 concurrent visitor
project which uses complex database queries and processes will consume
more resources than a static site project with 10,000 concurrent
visitors or vice-versa.

However more visitors consumes more system resources (ram-cpu) - and
traffic, etc.
Dec 21 '07 #6

"Betikci Boris" <pa*****@gmail. comwrote in message
news:fa******** *************** ***********@a35 g2000prf.google groups.com...
On Dec 21, 2:15 am, tenxian <mailtumen...@g mail.comwrote:
It is said as for code, developing a website that can stand 10,000
concurrent visitors is much different from developing a website that
can stand 1,000 concurrent visitors, is it true?
It's all about the aim of the project. A 1000 concurrent visitor
project which uses complex database queries and processes will consume
more resources than a static site project with 10,000 concurrent
visitors or vice-versa.

However more visitors consumes more system resources (ram-cpu) - and
traffic, etc.

======

numbnuts, you miss again! the 'aim of the project' doesn't change regarless
of expected hit rates!!! it's how you design it that *might*. you've just
tried to pass off an orange-to-apple comparison as valid advice.

zzzzzzzzzzz....
Dec 21 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2856
by: lawrence | last post by:
I've had buffer problems before where a script dies silently but no error message ever reaches my screen, because of buffering issues. Perhaps that is happening now. The other possibility, which I want to ask this group about, is if after the closing </html> tag it is simply impossible to get more HTML sent to a browser? I've pages that are rendered by functions that are put into one of three arrays, pageEventStart, pageEventMiddle, and...
100
9118
by: Peter | last post by:
Company thought DB2 will be better than Oracle. The bottom line is when you do select, the system crash. I think it may take 4-5 years for DB2 to reach Oracle standard. Peter
0
2752
by: Tom Warren | last post by:
I found a c program called similcmp on the net and converted it to vba if anybody wants it. I'll post the technical research on it if there is any call for it. It looks like it could be a useful tool for breaking ties when a phonic call returns a bunch of possibilities. Also, I'm looking for someone that has a zip code file with alternate city names (the PO assigns whatever name is convenient to them), email me if you got something. ...
19
2284
by: Swaregirl | last post by:
Hello, I would like to build a website using ASP.NET. I would like website visitors to be able to download code that I would like to make available to them and that would be residing on my personal server. Are there any code samples or books that someone can recommend so that I can implement this. I would prefer VB.NET code, but I am willing to convert from C# if necessary.
5
2693
by: Lyle Fairfield | last post by:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/callnetfrcom.asp The Joy of Interoperability Sometimes a revolution in programming forces you to abandon all that's come before. To take an extreme example, suppose you have been writing Visual Basic applications for years now. If you're like many developers, you will have built up a substantial inventory of code in that time. And if you've been following...
48
2651
by: Tony | last post by:
How much bloat does the STL produce? Is it a good design wrt code bloat? Do implementations vary much? Tony
1
3070
by: dez5000 | last post by:
I'm trying to get a report by location that would list the number of visits to the location for the month but also count the number of unique visitors to that location. I have a table of data with Location, VisitorId, and DateOfVisit. I then have a query to filter by a single month and then base my report on that query. In my report I have a group header for the location and I can do a count of the VistorId or DateOfVisit fields to get a...
2
1804
klarae99
by: klarae99 | last post by:
Hello, I am working in Access 2003 to create a database to record information about an annual fundraiser. I was hoping someone could review my table structure and make sure that it is normalized correctly and that it is set up to do what I would like it to do. I have some doubts on my current table structure and I would really appreciate any suggestions for improvement before I move on to creating my data entery forms. The purpose of...
27
3078
by: Dave | last post by:
I'm having a hard time tying to build gcc 4.3.1 on Solaris using the GNU compilers. I then decided to try to use Sun's compiler. The Sun Studio 12 compiler reports the following code, which is in the source (gcc-4.3.1/gcc/c-common.c) of gcc 4.3.1, is a syntax error. I'm inclined to agree, as it is like no C I have ever met. what is "C_COMMON_FIXED_TYPES (, fract);" supposed to mean? Could it be
0
9595
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10359
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10101
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9177
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7643
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5536
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5675
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3837
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3005
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.