Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

PHPixie:
Benchmarking Autoloading vs Combining classes into a single file
Oct 10, 2013 @ 16:48:44

On the PHPixie site there's a new post comparing the overall performance of autoloading versus a single-file approach when it comes to getting the best for your application. They point to the Fat-free Framework as an example of the single file approach.

Thinking about ways of further improving PHPixie I started looking at other projects for inspiration. For example the Fat-Free framework boasts on being contained in a single file. This got me thinking about making a tool for merging all project classes together with vendor libraries into a single for performance boost. MAking such a tool is a fairly trivial task, but still I wanted to be sure it would actually be useful, so I decided to benchmark autoloading classes with composer vs combining them into a single file.

The test script for the benchmarking is included in the post as well as the results from their test runs. In some the XCache extension was used to cache the opcodes, showing a noticeable change from the single-file approach. There's also a measurement of an average framework (autoloaded) request versus the all-in-one method with slightly surprising results. The post also ends with a recommendation for the Composer users out there - using the optional flag to generate a classmap to (slightly) help with autoloading speed.

tagged: benchmark autoload phpixie combined class performance

Link: http://phpixie.com/blog/benchmarking-autoloading-vs-combining-classes-into-a-single-file/

Tim Koschuetzki's Blog:
How to put Combined Fields Into CakePHP's Model->generateList()
Aug 10, 2007 @ 14:36:00

Tim Koschuetzki has posted this tutorial today about how to create form fields with combined information from more than one database column.

Two days ago, someone on #cakephp had the problem of getting combined values out of the Model->generateList() function in CakePHP. I advised him on doing some Set::extract() things, which at the end of the day got rather complicated. As a result, I was conscience-stricken. Here is a much more elegant solution I could come up with.

He introduces the generateList function first, showing how to use it to create a simple select list in your form. Unfortunately, it only understands using one field at a time, so he worked around it, creating a solution - his myGenerateList function - that handles things similarly and returns the same kinds of results (so it can be used with the set() function as well).

tagged: combined field data database cakephp framework generatelist combined field data database cakephp framework generatelist

Link:

Tim Koschuetzki's Blog:
How to put Combined Fields Into CakePHP's Model->generateList()
Aug 10, 2007 @ 14:36:00

Tim Koschuetzki has posted this tutorial today about how to create form fields with combined information from more than one database column.

Two days ago, someone on #cakephp had the problem of getting combined values out of the Model->generateList() function in CakePHP. I advised him on doing some Set::extract() things, which at the end of the day got rather complicated. As a result, I was conscience-stricken. Here is a much more elegant solution I could come up with.

He introduces the generateList function first, showing how to use it to create a simple select list in your form. Unfortunately, it only understands using one field at a time, so he worked around it, creating a solution - his myGenerateList function - that handles things similarly and returns the same kinds of results (so it can be used with the set() function as well).

tagged: combined field data database cakephp framework generatelist combined field data database cakephp framework generatelist

Link:


Trending Topics: