Projects tagged ‘benchmark’ and ‘php’


[9 total ]

1 Users
   

The Phoronix Test Suite is the most comprehensive testing and benchmarking platform available for Linux and is designed to carry out qualitative and quantitative benchmarks in a clean, reproducible, and easy-to-use manner.
Created about 1 year ago.

1 Users

PHP framework benchmark performance comparison suite.
Created 4 months ago.

0 Users

This is a PHP class that calculates the time between specified points. It can be used to determine how long your page took to generate or how long certain loops take to run. This class is very ... [More] flexible because it allows you to specify any number of "marker" points in the code and then compare any of them together. See full documentation and examples here: http://blueprint.intereactive.net/php-benchmark-timer-class [Less]
Created 3 months ago.

0 Users

Conjunt d'eines per a fer benchmarking de sistemes PHP.
Created 4 months ago.

0 Users

The PHP5 benchmark class is a very simple way to do benchmarks in PHP 5.3, like this: Here is the code to do that: ... [More] benchmark is started immediately or later (default: false) // 2nd parameter: defines the iterations number for the Benchmark::loop() method (default: 1,000) // 3rd parameter: defines the number of digits after the decimal point (default: 4) $bench = new Benchmark(false, 10000, 3); // Starts the benchmark $bench->begin(); // Does a loop $bench->loop(function() { $array = array('foo', 'bar'); foreach($array as $value); }); // Saves a flag $bench->flag(); // Does a loop $bench->loop(function() { $array = array('foo', 'bar'); for($i = 0; $i < count($array); $i++); }); // Stops the benchmark // Parameter: specifies whether the results is shown immediately or later (default: false) $bench->stop(false); // Shows results $bench->results(); ?> [Less]
Created 4 months ago.

0 Users

phpbench is currently at version 0.1 (see changelog). Version 0.2 is still in development, but anyway you can see screenshots here. Content comming soon...
Created 3 months ago.

0 Users

Simple performance comparison of different web frameworks / technology stacks. The same simple html page listing 10 user names retrieved from a mysql db is implemented in php, django, pure java ... [More] servlet and gradually more complex technology stacks based on struts2, i.e. hibernate3, freemarker/velocity and sitemesh [Less]
Created 9 months ago.

0 Users

The goal of this project is to develop a set of algorithms implemented in many different languages including compiled and interpreted. Thoose test will allow us to know how much will an application ... [More] be improved if implemented into another language. The tests are compared with a crude standard C. And the algorithm is initially implemented in Python and ported to all the others languages. Please, if you run the tests, send me the results at jacobidiego(at)gmail.com Any contributions are welcomed. The next results are promediated from all runs and may vary on the algorithm used and the parameters passed. Results for Quine-MacCLusky Algorithm: "A procedural minterms reduction algorithm for logic ecuations, similar in function to Karnaugh" Python is 34 times slower than C. C++ is 3 times slower than .C Note that, Python efficiency varies too much depending on the number of variables to manipulate. Plain Standard C is a pain to develop, most developers uses APIs like GLib to make this task done. Another project aiming to bench languages is at: http://shootout.alioth.debian.org/ [Less]
Created 12 months ago.

0 Users

For now basic PHP script for performance testing. Planned: small application for testing capabilities of shared hosting virtual servers - based on PHP.
Created 12 months ago.