Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, I plan on designing a very large scale web application(me and my 2 friends), with alot of user interaction, constant status updates, etc... Basically picture me creating an a web application like twitter. this application needs to be FAST.

What would be the ideal Framework to use for this kind of situation?

Im very familiar with codeigniter but i read that its ment for smaller websites. Someone mentioned Yii, but i havent really looked into it yet.

So what you guys think i should use? or do you have any other suggestions? Thanks.

share|improve this question
4  
If you're doing something similar to Twitter, I'd guess your bottleneck will be database access, not in the web application. Even Twitter uses Rails for the frontend work, which isn't exactly the lowest-overhead framework around. – millimoose Oct 17 '11 at 20:19

closed as not constructive by Andrew Barber 19 hours ago

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

up vote 17 down vote accepted

I have seen CodeIgniter used on some pretty sizable sites so I wouldn't count it out just yet. I have experimented with both and I have found that CodeIgniter has much more accessible documentation. They both have good documentation, I just found CodeIgniter's to be easier to use.

Since it sounds like you've decided to use PHP and have narrowed it down to these two frameworks I suggest you weigh what is important to you. Since you are already familiar with CodeIgniter (and I personally prefer their documentation) I would go with that for speed of development and maintainability. As far as speed goes Yii is faster than CodeIgniter so I would recommend trying to develop a simple webapp in Yii and see how you like it. If you find that you can learn it quickly and it will be maintainable, I say go for it. And just for the sake of completeness I'll mention that custom built raw PHP is the fastest solution though it can be a nightmare to maintain.

All that being said, in my experience the biggest bottle neck in webapp speed come from its database (that is a traditional SQL type DBMS). Overall I suggest finding a profiling tool that will locate where things slow down so that you can focus on the problems when they become problems.

share|improve this answer
7  
Would the down voter care to comment? Have I said something that isn't factual? Is there a way I might improve this answer? – hradac Nov 21 '12 at 16:06

Most PHP frameworks are fast enough, so rather than speed, the questions you should ask are..

  • Is this an important project with a deadline?
    • If it is, you should stick to a technology you know well (probably CI for you then)
  • Is this a "for fun" type project?
    • If so, perhaps it would be more interesting to pick a new framework to work with? (so perhaps Yii in this case)
  • What development methodology will I use?
    • For example if you want to do automated testing, consider using a framework which makes it easy (such as ZF, because of its decoupled nature)
  • What features do I need?
    • Pick a framework which provides as much features as possible out of the box
  • Will I need much custom code?
    • Consider a framework which provides a base you can easily build your own components on (ZF comes to mind again)

You can probably think of a few more things to add.

share|improve this answer

Most of the issues have been pointed out already. I can tell you just one thing that Yii will take some time(at least a month or may be two) for you to get familiar with it and make use of its capabilities. Its loaded and thats why the learning curve.

I have myself been carrying this curse since a long long time : which Framework to use ? And in this process I have evaluated and used both these frameworks thoroughly. Yii is the best there's no doubt about it. With Yii, its like you need something and its there and its intelligent enough to do all the leg work and keep you out of coding convention dilemma.

Having said all of these. I believe Yii is more suitable for the enterprise like project where you need standard functionality and interface first and that gives you a head start. In other words Yii gives you readymade controllers, model, CRUD, breadcrumb, pagination, Layout ; CI lacks these.

But If I were to build an application like twitter, I would hardly need these standard features, so using Yii would be like using a Truck without enough payload on it.

Moral of the story : Go with CI for your twitter like project !

share|improve this answer
Well said. Hoewever, the OP needs performance for the large scale project, so Yii > CI – Lamy Nov 21 '12 at 7:37
talking on enterprise, I would have gone all the way and use Symfony. It's a great "heavy weight" PHP framework (and very far from native PHP) that takes care of a lot of issues with the price of slow learning curve. I do, however, work with CI most of the time since I enjoy its flexibility. – Nir O. Dec 28 '12 at 18:50

If you have never worked with a framework, you should not use a mission-critical project as a testing ground. It never ends well.

share|improve this answer

Most of your application's load is going to be on the front end and the database, so you really shouldn't pick a framework on speed. You'd be much better off picking the framework that:

  1. Has the slightest learning curve for you
  2. Is going to allow you to create a well-organized, well-documented codebase
  3. Will not present a significant challenge in finding developers when you need to hire

As for your engineering decisions:

  1. Work on optimizing your database queries
  2. Make sure you minify your front end assets (js, css)
  3. Cache what you can to reduce HTTP queries and DB queries

Both Yii and CI help you do all of these things except optimizing your db queries, between what's provided in the core framework and extensions / packages that are available. I would say that using Yii at more than a "I'm making a simple CMS" level presents a bigger challenge than using CI.

If it was my pick I'd go with CI because I understand it better and would have an easier time finding developers...but I have played around with Yii and it is also a great framework.

share|improve this answer

I personally would suggest using Code Igniter... I am using both Yii and Code Igniter, because I own project built on both - and personally for me - the development under CI is much faster for me... In Yii I don't feel like it saves much development time, also Yiis bridge with different jQuery scripts is a little buggy...

share|improve this answer

I am working on a large-scale web-app myself. I started using CodeIgniter and found it to be a dead end.

At some point I could not get user-accounts to work stable and found myself debugging into sessions. That when I called it quits.

I switched to Yii and it was the best decision I made. In my mind, Yii has it all: - stable software - speed - excellent documentation on the site (Definitive Guide) - lots of functionality - helpful community

Of course, there are other out there like Zend & Symphony. I have no hours on those frameworks, though.

Best of luck on your choice!

share|improve this answer
to save your hours: zend framework has a very steep learning curve but the more complex your project gets the more you feel you are in zf's heaven. CONSIDER i haven't tried any other framework yet. – shampoo Dec 20 '12 at 13:35

First of all - "FAST" depends on a lot more than just your choice of framework. Also, beware premature optimization.

The point of using a framework is Rapid Application Development, not Speed or Scalability per se. The big sites that started on a known framework eventually migrated to an in-house solution that was customized for their specific needs.

If you're looking for a great framework that provides a good blend for ease of use, speed, etc I'd recommend that you look at Kohana 3 which began as a port of Code Igniter.

Now for the shameless plug, one major source of bottlenecks with regard to frameworks has always been the ORM library. I recommend that you take a look at GacelaPHP or Kacela which is the Kohana 3 specific implementation. It supports a lot of the features you'll need to scale your application down the road.

I strongly suggest building Version 1 before you do anything too exotic because its with Version 1 that you'll find the problems and mistakes that hamper your specific application and its with Version 1 that you'll see what kind of usage to expect from your user base.

share|improve this answer

If speed and scalability really are your top priorities, then IMO you're going about it backwards by choosing a PHP framework as your first step. Here's the order of operations I would recommend:

  1. Look hard at your data model to see if you can make your persistent storage requirements work with one of the No SQL options.

  2. Think about how you might use memcached with your application.

  3. Think about which Relational DBs (if you really need one) offer good performance for the types of queries which you will need (e.g. subselects?).

  4. Look at the available language bindings & libraries for the persistent storage technologies which you have identified in steps 1-3.

  5. Look for any available Apache modules for the language technologies which you have identified in step 4.

  6. Choose your language/framework based on the options identified in steps 4 and 5.

Of course, few have the luxury of taking this approach because requirements are rarely so pure.

share|improve this answer

Yii also provides authomated testing. Check out the book "Agile Web Application Development with Yii 1.1 and PHP5" Author: Jeffrey Winesett

Also have a look at the Google search trends: http://www.google.com/trends/explore#q=zend+framework,codeigniter,symfony,yii,cakephp Tick the checkbox Forecast too to see the predictions.

share|improve this answer

I suggest developers to use CodeIgniter as it has excellent documentation and support guide. Moreover it saves time. I used both Yii and CodeIgniter. Many argue that YII is fast and more reliable. They argue this mainly because most of the team members only know Yii. I felt Yii to be actually buggy, it has poor documentation and its like a sort of non-standard Chinese thing. I personally felt many CodeIgniter sites are working much faster than Yii Sites. So please don't fall into the assumption that Yii is much faster and waste your project time behind it. It depends on how you write the code and SQL queries that make your project faster. Just check the documentation of these two frameworks and you can even feel from the documentation that CodeIgniter that its feature rich and more faster than Yii.

share|improve this answer

I think you should go with Yii as it has a lot of out of the box features is quite fast too.
And as someone already said that the biggest bottle neck in webapp speed come from its database (that is a traditional SQL type DBMS)
So you should consider using MongoDB(no-Sql) as it is much more faster than traditional sql DBMS.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.