Code Monkey home page Code Monkey logo

Comments (5)

hijarian avatar hijarian commented on July 23, 2024

Well, if you go as far as to profile newly-installed application templates, you can also look at the xdebug dump output with cachegrind and find the bottleneck yourself. :-| We did not do this, and your finding is interesting, by the way.

First idea that comes into my mind is that application templates which come with Yii 1.1 and Yii 2 assume your app is in production mode, and you need to enable debug mode manually. And in debug mode everything works slower. Try to re-run your profiling after putting an empty file named PRODUCTION_MODE in root of the codebase. Look at the check_prod_mode.php script for details. YiiBoilerplate assumes that you in debug mode by default, and you need to enable production mode manually. This is by design, because you have production mode on just a single deploy machine and almost always need the debug mode in all other cases.

from yiiboilerplate.

fazliddin avatar fazliddin commented on July 23, 2024

So, profiling showed that bottleneck was in using CDbHttpSession for session, as you can see below
dbsession
When I commented session part, performance increased for 2.5 times, that is 50 requests per second, here is profile
screenshot from 2014-12-13 23 09 11
But it is still slower where fresh yii1 which handles 150 r. p.s. As you see in second profile bottleneck is in CMap::mergeArray, YiiBase::import and YiiBase::autoload. It is because YiiBoilerplate uses very expensive method mergeArray for complex config files.

Actually I did not think that using database for session degrades performance.

from yiiboilerplate.

hijarian avatar hijarian commented on July 23, 2024

Whoa, such a slow updates. Actually, database can be the botteneck if establishing connection to it is costly or it runs on a slow disk. Probably enabling DB caching will help, but I am not sure in this case, because most of the time were spent in UPDATE query.

from yiiboilerplate.

hijarian avatar hijarian commented on July 23, 2024

Can you please provide the same profile charts for the fresh Yii 1.1 installation?

I certainly could not anticipate that combining arrays in PHP can be so costly as to decrease performance threefold.

from yiiboilerplate.

fazliddin avatar fazliddin commented on July 23, 2024

screenshot from 2014-12-18 00 27 14

my test is simple

ab -n 10 -c 2 http://yii-boilerplate
result: 90 req p.s.

ab -n 10 -c 2 http://yii-fresh
result: 150 req p.s.

from yiiboilerplate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.