Tagged Questions
Scalability is the ability of a system to handle increasing workload gracefully.
168
votes
23answers
21k views
Does Django Scale?
I'm building a web application with Django. The reasons I chose Django were:
I wanted to work with free/open-source tools
I like Python and feel it's a "long term" language, whereas regarding Ruby I ...
75
votes
12answers
12k views
How Scalable is SQLite?
I recently read this Question about SQLite vs MySQL and the answer pointed out that SQLite doesn't scale well and the official website sort-of confirms this, however.
How scalable is SQLite and what ...
53
votes
16answers
9k views
How to write a scalable Tcp/Ip based server
I am in the design phase of writing a new Windows Service application that accepts TCP/IP connections for long running connections (i.e. this is not like HTTP where there are many short connections, ...
51
votes
5answers
6k views
Optimizing Kohana-based Websites for Speed and Scalability
A site I built with Kohana was slammed with an enormous amount of traffic yesterday, causing me to take a step back and evaluate some of the design. I'm curious what are some standard techniques for ...
47
votes
23answers
3k views
How are you taking advantage of Multicore?
As someone in the world of HPC who came from the world of enterprise web development, I'm always curious to see how developers back in the "real world" are taking advantage of parallel computing. ...
41
votes
9answers
3k views
How/why do functional languages (specifically Erlang) scale well?
I have been watching the growing visibility of functional programming languages and features for a while. I looked into them and didn't see the reason for the appeal.
Then, recently I attended Kevin ...
40
votes
11answers
12k views
Should I use EJB3 or Spring for my business layer?
My team is developing a new service oriented product with a web front-end. In discussions about what technologies we will use we have settled on running a JBoss application server, and Flex frontend ...
39
votes
7answers
9k views
Django vs Flask for a long-term project
I am looking for a comparison of django and flask for a project that will live for a long time, and will need to be maintained, built upon and grow as the months progress.
I am considering Flask + ...
30
votes
1answer
6k views
Caveats of select/poll vs. epoll reactors in Twisted
Everything I've read and experienced ( Tornado based apps ) leads me to believe that ePoll is a natural replacement for Select and Poll based networking, especially with Twisted. Which makes me ...
30
votes
11answers
4k views
No PHP for large projects? Why not?
I've read a few posts where people have stated (not suggested, not discussed, not offered) that PHP should not be used for large projects.
Being a primarily PHP developer, I ask two questions:
What ...
26
votes
7answers
3k views
Does Scala scale better then other JVM languages?
Here is the only way I know to ask it at the moment. As Understand it Scala uses the Java Virtual Machine. I thought Jruby did also. Twitter switched its middleware to Scala. Could they have done ...
22
votes
11answers
2k views
Good Book on Scaling Asp.Net applications
Can somebody suggest a good solid book on scaling Asp.Net applications? One that could potentially scale to millions of users.
Some of the books listed here are pretty good ...
21
votes
2answers
491 views
Is it fine to copy the mediawiki database architecture to design your own wiki?
In the highscalability blog, Todd Hoff talks about the wiki architecture SO adopted (initially), crunches that followed and mentions the painful refactoring needed to get back on track.
To quote:
...
21
votes
8answers
12k views
Ruby on Rails scalability/performance?
I have used PHP for awhile now and have used it well with CodeIgniter, which is a great framework. I am starting on a new personal project and last time I was considering what to use (PHP vs ROR) I ...
20
votes
5answers
288 views
What goes in to making a web site that needs to scale?
I am planning to build an application that will get a large amount of traffic. (Please don't say I won't get traffic, this is for an internal network, so the traffic will be there. Just trying to ...
20
votes
10answers
1k views
What databases do the World Wide Web's biggest sites run on?
This question is meant to serve as a list of databases and their configurations that the major web sites use and would be a great reference for anyone thinking of scaling their web site to the size of ...
18
votes
14answers
2k views
What is the Reason large sites don't use MySQL with ASP.NET?
I have read this article from High Scalability about Stack Overflow and other large websites. Many large high traffic .NET sites such as plentyoffish.com, MySpace and Stack Overflow all use .NET ...
17
votes
1answer
970 views
Does the Thundering Herd Problem exist on Linux anymore?
Many linux/unix programming books and tutorials speak about the "Thundering Herd Problem" which happens when multiple threads or forks are blocked on a select() call waiting for readability of a ...
17
votes
4answers
1k views
Achievements / Badges system
I have been browsing this site for the answer but I'm still a little unsure how to plan a similar system in its database structure and implementation.
In PHP and MySQL it would be clear that some ...
16
votes
6answers
866 views
Why do people say that Java is more scalable than python? [closed]
I've seen this argument in a few places, and now, recently i saw it again on a reddit post.
This is by no means a flame against any of these two languages. I am just puzzled why there is this bad ...
14
votes
3answers
339 views
What are some best practices for making sure your .NET code will scale well?
Last week I interviewed for a position at a TripleA MMORPG game company here in NE. I didn't get the job but one of the areas that came up during the interview was the about the scalability of the ...
14
votes
13answers
460 views
How to prevent your code from becoming obsolete?
Some programmers here have been developing a project in VB6, and they say they now need to upgrade to vb.net if they want their apps to run on newer/future systems as vb6 is going to be history soon.
...
14
votes
7answers
1k views
Does Seaside scale?
Seaside is known as "the heretical web framework". One of the points that make it heretical is that it has much shared state. That however is something which, in my current understanding, hinders easy ...
14
votes
8answers
15k views
SharePoint List Scalability
I am particularly interested in Document Libraries, but in terms of general SharePoint lists, can anyone answer the following...?
What is the maximum number of items that a SharePoint list can ...
13
votes
4answers
532 views
Why would someone design a RESTful API with 'API' in the URI?
I just finished reading Restful Web Services and Nobody Understands REST or HTTP and am trying to design an API with a RESTful design.
I've noticed a few patterns in API URI design:
...
13
votes
1answer
3k views
Scaling node.js
I'm fairly new to large-scale server-side development. I want to write a server using node.js, but before I forge ahead I'd like to know what the general principles are for scaling node up to, say, 20 ...
13
votes
3answers
332 views
Queuing theory for programmers?
After being burnt several times on things that seemed "obviously fast enough" but sucked performance-wise under load, I'm starting to think that my "gut feeling" might be not enough when doing ...
13
votes
10answers
675 views
Should someone with no PHP experience use a framework like CakePHP or Symfony?
I have a simple site to develop and would like to learn PHP as I go. I want the site to be secure, scalable, and easy to maintain. Should I learn a framework and PHP simultaneously? If I build off ...
13
votes
6answers
758 views
What is the best architecture for tracking field changes on objects?
We have a web application that is built on top of a SQL database. Several different types of objects can have comments added to them, and some of these objects need field-level tracking, similar to ...
13
votes
13answers
2k views
Architecture recommendation for load-balanced ASP.NET site
UPDATE 2009-05-21
I've been testing the #2 method of using a single network share. It is resulting in some issues with Windows Server 2003 under load:
http://support.microsoft.com/kb/810886
end ...
13
votes
16answers
1k views
How well does .NET scale?
(I'll begin by making it clear, I am not a .NET developer and am not tied to any other environment.)
Recently, I heard that the London Stock Exchange went down for an entire day. I've also heard that ...
12
votes
5answers
657 views
Java + NodeJS communicating via socket: Bad Idea?
I like some features of NodeJS, particularly JQuerification, websocket compatibility via socket.io, view and css engines that I cannot use with JSP (and of course, asynchronous calls). At least, as ...
12
votes
4answers
294 views
Memory-efficient line stitching in very large images
Background
I work with very large datasets from Synthetic Aperture Radar satellites. These can be thought of as high dynamic range greyscale images of the order of 10k pixels on a side.
Recently, ...
12
votes
4answers
11k views
PHP vs Java performance and scalability comparison
Is there a good modern comparison (last couple years) of how Java performs and scales relative to PHP in a modern web application environment (Twitter, Facebook, COMET push)
Is there any type of ...
12
votes
5answers
671 views
What should be the considerations for choosing SQL/NoSQL?
Target application is a medium-sized website built to support several hundred to several thousand users an hour, with an option to scale above that. Data model is rather simple, and caching potential ...
12
votes
10answers
1k views
How scalable is LINQ?
Recent conversations with colleagues have produced varying points of view on this matter. What say you, SO members?
I know, even the concept of scalability can be taken in so many different ways and ...
12
votes
9answers
11k views
What is the best PHP MVC framework for scalability?
There are a lot of MVC frameworks for PHP. Which one is the best in terms of scalability?
Is there any framework that supports splitting applications on many front end and database servers? ...
12
votes
10answers
1k views
CMS without front end?
In many projects we are developing we need to have CMS functionalities in the back end of the site. On the other end we don't want to or can't commit to a complete front end solution.
To explain this ...
12
votes
4answers
3k views
How well will WCF scale to a large number of client users?
Does anyone have any experience with how well web services build with Microsoft's WCF will scale to a large number of users?
The level I'm thinking of is in the region of 1000+ client users ...
11
votes
3answers
937 views
Java's Mahout equivalent in Python
Java based Mahout's goal is to build scalable machine learning libraries. Are there any equivalent libraries in Python ?
11
votes
1answer
641 views
How to deploy a [Ruby on Rails] site in a scalable way?
I have been working on my [first] startup for a month now, and while it's probably atleast one more month away from an alpha release, I want to know how to deploy it the right way. The site will have ...
11
votes
5answers
998 views
Java Solutions for Distributed Transactions and/or Data Shared in Cluster
What are the best approaches to clustering/distributing a Java server application ?
I'm looking for an approach that allows you to scale horizontally by adding more application servers, and more ...
11
votes
8answers
11k views
php vs python. scalability
Why is PHP considered more scalable than python?
I've heard may times that one of the reasons PHP is "better" than python is that PHP is more easily scalable, and that Yahoo proves that(assumig Yahoo ...
11
votes
4answers
2k views
Design Patterns (or techniques) for Scalability
What design patterns or techniques have you used that are specifically geared toward scalability?
Patterns such as the Flyweight pattern seem to me to be a specialized version of the Factory ...
11
votes
4answers
3k views
Pro's of databases like BigTable, SimpleDB
New school datastore paradigms like Google BigTable and Amazon SimpleDB are specifically designed for scalability, among other things. Basically, disallowing joins and denormalization are the ways ...
10
votes
4answers
849 views
How am I supposed to interpret the results from Apache's ab benchmarking tool?
Alright, I've searched everywhere and I can't seem to find a detailed resource online for how to interpret the results from Apache's ab server benchmarking tool. I've run several tests with what I ...
10
votes
1answer
928 views
CEDET scalability tips
I use CEDET (latest CVS) with several moderately large projects (a few hundred kLOCs each, mostly C, but some C++) and sometimes experience long pauses in which the system is completely unresponsive ...
10
votes
3answers
7k views
How does Node.js perform compared to Apache?
Is Node.js quicker and more scalable than Apache? Are there any performance figures to back up Node.js's performance for a web application over Apache?
UPDATE: Ok maybe my question (above) is ...
10
votes
8answers
396 views
How does event driven I/O allow multiprocessing?
I am aware of event driven I/O like select, poll, epoll, etc allow someone to build say a highly scalable web server, but I am confused by the details. If there is only one thread of execution and one ...
10
votes
1answer
628 views
Config IIS for serving Static files / CDN? [closed]
Is there anyway to config IIS to serve static file like CDN? Like Gzip, Cache, E-tag, Mod-date?
And how should we config to make it very robust on massive requests?
I know it's a short question but ...