472,780 Members | 1,811 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,780 software developers and data experts.

Scalability

What does the term "scalability of an application" mean?

Thanks,

Arpan
Jul 19 '05 #1
3 1864
How well your application will work as the demand on it increases.

i.e. You can make a web-based app that is coded very poorly from an
efficiency point of view, and if only one person is using the app, it won't
really matter. But, if your site gets really busy and suddenly 50,000
people are using it, you will see that the application is not very scalable
if it was coded poorly.

Ray at work

"Arpan" <ar******@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP10.phx.gbl...
What does the term "scalability of an application" mean?

Thanks,

Arpan

Jul 19 '05 #2
In addition to Ray's response "scalability" also includes the ability to add
additional hardware resources to increase the number of users.

For instance:
session variables are considered an impediment to scalability because they
use server memory to hold data and memory may be limited. Also session
variables are not shared between web-servers in a web-farm so you cannot
improve things just by adding more servers (there are some work-arounds for
this however).

Keeping session data in a database is considered "scaleable" because you can
easily add web-servers to increase capacity. This is a more "scalable"
solution than session variables even though it may require more hardware
support for each individual user than using session variables would (SQL
statement execution vs memory access).

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Arpan" <ar******@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP10.phx.gbl...
What does the term "scalability of an application" mean?

Thanks,

Arpan

Jul 19 '05 #3
I have got to confess that you as well as Ray have given a very good
explanation & instances to make me understand the term "scalability". Thanks
to both of you for the same :)

Regards to you & Ray,

Arpan

"Mark Schupp" <ms*****@ielearning.com> wrote in message
news:uQ**************@TK2MSFTNGP11.phx.gbl...
In addition to Ray's response "scalability" also includes the ability to add additional hardware resources to increase the number of users.

For instance:
session variables are considered an impediment to scalability because they
use server memory to hold data and memory may be limited. Also session
variables are not shared between web-servers in a web-farm so you cannot
improve things just by adding more servers (there are some work-arounds for this however).

Keeping session data in a database is considered "scaleable" because you can easily add web-servers to increase capacity. This is a more "scalable"
solution than session variables even though it may require more hardware
support for each individual user than using session variables would (SQL
statement execution vs memory access).

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Arpan" <ar******@hotmail.com> wrote in message
news:uS**************@TK2MSFTNGP10.phx.gbl...
What does the term "scalability of an application" mean?

Thanks,

Arpan


Jul 19 '05 #4

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

Similar topics

7
by: Wenning Qiu | last post by:
I am researching issues related to emdedding Python in C++ for a project. My project will be running on an SMP box and requires scalability. However, my test shows that Python threading has very...
0
by: Khaled D Elmeleegy | last post by:
--=_alternative 004FC1E080256D75_= Content-Type: text/plain; charset="us-ascii" I am studying the scalability of MYSQL on SMPs on Linux. I am wondering if any one has performed scalability...
2
by: rlm | last post by:
I know, solely as a matter of fact, that a web based application written in (100%) VBScript/JavaScript & embedded SQL will not scale. However, I can only conjecture as to the reasons why. We have...
0
by: tharma | last post by:
I was wondering if some one provides some information about scalability and performance of ASP vs JSP. Scalability of JSP vs. ASP (which one is better?) Performance of JSP vs. ASP (which has...
8
by: Duffey, Kevin | last post by:
We are looking for information regarding any capabilities of PostgreSQL in regards to scalability. Ideally we want to be able to scale in both directions. What sort of solutions are out there for...
1
by: Refky Wahib | last post by:
Hi Actually I need Technical Support I finished a Great project using .Net and SQL Server and .Net Mobile Control My Business case is to implement this Program to accept about 1 Million...
2
by: Gordowey | last post by:
Hi all, I would like to ear your opinion about the best approach for and ASP.net with high workload traffic (High number of visitors) using SQL DB Consider the following scenario: - Website...
9
by: Tim Mitchell | last post by:
Hi All, I work on a desktop application that has been developed using python and GTK (see www.leapfrog3d.com). We have around 150k lines of python code (and 200k+ lines of C). We also have a...
0
by: Daniel Fetchinson | last post by:
>I work on a desktop application that has been developed using python If python is suitable for large projects with over 300k lines of code but not in the desktop app scene but web apps then...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.