Tagged Questions
2
votes
3answers
62 views
Capturing (externally) the memory consumption of a given Callback
The Problem
Lets say I have this function:
function hog($i = 1) // uses $i * 0.5 MiB, returns $i * 0.25 MiB
{
$s = str_repeat('a', $i * 1024 * 512); return substr($s, $i * 1024 * 256);
}
I ...
-1
votes
2answers
74 views
MySQLi query vs PHP Array, which is faster?
I'm developing an algorithm for intense calculations on multiple huge arrays. Right now I have used PHP arrays to do the job but, it seems slower than what I needed it to be. I was thinking on using ...
0
votes
1answer
34 views
Session data Vs mysql query for small info
Cant find any sort of benchmarking, or tests, around this particular thing, so i'll just ask:
Needing a small amount of info (let's say that it's: "150", for example) that is stored or in the ...
1
vote
2answers
26 views
Image resizing performance comparison
I'm saving two photos from an upload. One is a larger photo and the other is a thumb.
I was wondering if i used less resources to create the thumb copy of a photo from the reduced larger photo say ...
2
votes
1answer
78 views
PHP json_decode() Output : Object vs Array? [closed]
For the function json_decode(), there are 2 options of output, JSON Object or Array.
$obj = json_decode($json_string, false);
or
$array = json_decode($json_string, true);
Which type performs ...
0
votes
0answers
18 views
How can we maintain the counters for each process of the apache without using getmyid function [duplicate]
Possible Duplicate:
Maintain a counter for each processes
Hello,
Please open this question again, pls ask me if any doubt in understanding question. Guide me an elegant solution to this.
...
3
votes
2answers
125 views
Peak memory usage of code block? [duplicate]
Is it possible to get the peak memory usage of a particular block of code in PHP? The memory_get_peak_usage() function seems to get the peak over the entire process execution up to the point of the ...
-1
votes
1answer
159 views
how to get client system info from website? [duplicate]
Possible Duplicate:
How can I get system/hardware info via Java?
I'm doing a website with PHP.
one of the functionality need is to get info about the client pc..
Such as ram..graphic ...
-2
votes
1answer
74 views
Benchmark for PHP and JavaScript programs? [closed]
I want to choose between JavaScript or PHP for an web application (bother server and client side) that is performance critical. I want to benchmark the critical portion of the app in JS and PHP and ...
-3
votes
1answer
110 views
time consumed SELECTing 1 row (WHEREd PK id only) vs more complex SELECTs [closed]
Does anyone have any benchmarking standards for how long it takes to SELECT one row by the PK ai INT id? I assume it increases with table size, but the one link I could find dubiously said no.
I've ...
2
votes
0answers
185 views
Database performance using mysqlslap vs actual sql queries
We are benchmarking a number of servers with a view to migrating our current site.
We have tested 2 configs against the current setup, using a mysqlslap test and by running sql queries on table with ...
3
votes
1answer
138 views
MySQL benchmarking: 1 query returning 1000 rows VS 1000 single-row queries [closed]
Working on an app that requires a very large amount of data transferred from the DB. It includes SELECT and UPDATE queries both (i.e. read and write to the DB).
First I need to get a list of all the ...
0
votes
0answers
496 views
MicroMVC, ColaPHP, DooPHP [closed]
In some benchmark I saw some PHP frameworks that are not well-known to me but have excellent performance:
MicroMVC
ColaPHP
DooPHP
Larravel
Kohana
(image source)
Which ones are stable for ...
1
vote
1answer
110 views
CodeIgniter - how to selectively cache output?
My application allows registered users to post stuff. On the top bar, like many social apps, when logged in one can see their avatar etc.
My issue is that the user-specific content in the header gets ...
0
votes
1answer
65 views
Apache benchmark inconsistent
I am testing my website homepage on a local server using apache benchmark and I would have expected some consistent results, given that there are no eternal influences on the site as it is local.
...
0
votes
8answers
84 views
In PHP is faster to get a value from an if statement or from an array?
Maybe this is a stupid question but what is faster?
<?php
function getCss1 ($id = 0) {
if ($id == 1) {
return 'red';
} else if ($id == 2) {
return 'yellow';
} else if ...
3
votes
3answers
596 views
SQL Benchmarks: PHP ActiveRecord ORM vs. MySQL vs. CodeIgniter Active Record vs. Standard PHP
Tests updated to be more readable; all done within a 100x foreach loop.
The test query is SELECT * FROM school_courses;
Can anyone provide "outside-the-box-thinking" feedback as to:
a) Why PHP ...
-2
votes
1answer
217 views
possible ways to increase performance in ZF2 applications? [closed]
i read a lot benchmark weblog posts about ZF2 that says zf2 has a low performance for response time because of huge functions load and class loads ...
so i need a list of possible ways to increase ...
4
votes
5answers
200 views
PHP vs MySQL Performance ( if , functions ) in query
I just see this artice
i need to know what's is best berformance in this cases
if statment in query
SELECT *,if( status = 1 , "active" ,"unactive") as status_val FROM comments
VS
<?php
$x ...
0
votes
0answers
104 views
Which PHP frameworks use in testing? [closed]
I am going to do a test/benchmark of some PHP frameworks.
The main factor of comaparation will be a comunication with MySQL databases and CRUD operations with them.
I'll also compare their ...
1
vote
2answers
303 views
In PHP, how to check how much memory a certain loop is using
I'm currently making a PHP timer that checks how much time a certain way of doing something takes compared to another thing that accomplishes the same, basically benchmarking.
Now, I would also like ...
1
vote
1answer
203 views
Why does my Profiling/Benchmarking shows much better Performance than Google Chrome Devtool
I am benchmarking my app to see where I increase the performance of the site. I'm using PHP framework Laravel and performing the search against Solr. Benchmarking is done by comparing microtime() and ...
1
vote
2answers
246 views
Quick benchmark from the command line
I'd like to benchmark a PHP script, but this would equally apply to anything that can be run from the command line.
Using bash is there a simple way to benchmark a script, i.e. run a command multiple ...
0
votes
1answer
370 views
Measure total site loading time in PHP
I'm looking for a way to measure each step of a (HTTP) web request in php similar to Firebug's timeline or http://tools.pingdom.com.
I can use a timer to measure the web requests, but I am looking ...
4
votes
2answers
320 views
Why PHP (script) serves more requests than CGI (compiled)?
I developed the following CGI script and run on Apache 2 (http://localhost/test.chtml). I did same script in PHP (http://localhost/verifica.php). Later I performed Apache benchmark using Apache ...
3
votes
1answer
253 views
APC not giving any performance gains for a Symfony1.4/Doctrine application?
I am working on an application (Symfony 1.4 / Doctrine) that has some pages that are pretty heavy to load. One of these pages contains a very complex form with a lot of relations (embedded forms). The ...
2
votes
1answer
328 views
Poor performance
I am doing performance tests for my master thesis and I'm getting very poor performance of Symfony2 simple application. It's simple app, one query and some math.
Test results for command:
ab ...
0
votes
1answer
169 views
mysql_query equivalent to mongoDB
I'm trying to write a php benchmark in order to compare some RDBMS, NewSQL and NoSQL.
This script just execute queries and measure the execution time.
For mysql-like, I simply use:
$start = ...
29
votes
3answers
16k views
Node.js vs PHP processing speed [closed]
I've been looking into node.js recently and wanted to see a true comparison of processing speed for PHP vs Node.js. In most of the comparisons I had seen, Node trounced Apache/PHP set ups handily. ...
1
vote
1answer
742 views
How to properly compare NodeJS and PHP with MySQL query performance
As I do not trust many benchmarks out there, because they are not actually handling I/O like database connections, just sending "Hello World" to user and recieving enormous throughputs. I am not ...
0
votes
2answers
337 views
Server benchmarking php performance
I have several hosting accounts with different companies, and I'm trying to evaluate which one will run a stock Wordpress installation the fastest (without having to install wordpress on each of them ...
1
vote
2answers
199 views
PHP Garbage collection and memory optimizations
I'm doing some PHP memory benchmarks and i'm wondering if there is a way to optimize the garbage collector in order to reduce the memory consumption (as it is possible in other languages such as ...
2
votes
1answer
359 views
ApacheBench is very slow
I have created two benchmark pages using Slim and Silex micro frameworks, then tested them for speed.
Chrome Developer Tools result:
Slim: 7ms
Silex: 16ms
ApacheBench result:
# Slim
$ ab -n 1 -c ...
4
votes
1answer
71 views
Is there a way to trace garbe collector activity in PHP?
I would like to know if there is a way with PHP5.3 to trace the garbage collector activity like in Java with -verbose:gc command line.
I try to know how often and when the collections occurs.
I'm ...
2
votes
2answers
941 views
Redis with PHP - implementing data caching
I have installed redis on my server and implemented object caching for data returned within a PHP based web application. The php model essentially executes a reasonably complex query and returns a ...
0
votes
1answer
259 views
PHP running Drupal benchmark is slower than it should be
Originally, I posted this on ServerFault... but perhaps it is more of a PHP lingual question.
I have a server with Dual Xeon Quad Core L5420 running at 2.5GHz. I've been optimizing my server, and ...
1
vote
1answer
127 views
PHP Application performance
First I want to say that I'm using Drupal as CMS and I know that there is separate Drupal stackexchange site. But my problem is not Drupal specific, it's not in User or Advanced User level. It's PHP ...
2
votes
2answers
337 views
how do i benchmark mysql in wamp?
I'm about to deploy a college website. It has around 2200 user profiles generated - one for every student- so i decided to gauge the server load and capacity. Problem is I cant figure out how exactly ...
0
votes
2answers
169 views
CPU intensive? PHP byte read gzip file to browser
I want to use a PHP script as an intermediary to serve a .JS.GZ file with appropriate response headers and caching headers. How much more CPU intensive is this as compared to just serving the file ...
0
votes
2answers
75 views
Execution time with if or conditions
Considering this class
Class 1
class myclass {
public static function myfunction($condition, $string)
{
if ($condition) {
// A lot of code here
// This is ...
5
votes
1answer
626 views
cpu_get_usage in php?
I have created a benchmark class that allows the user to insert for example
$timer->checkpoint('1');
to check out some code for time,memory consumption and such.... and at the end of the code if ...
6
votes
3answers
4k views
Compare benchmarks of CodeIgniter vs Yii
I am searching for the fastest framework in PHP.
I have found one benchmark in which Yii is faster than CodeIgniter, and another benchmark in which CodeIgniter is faster than Yii.
So, which is ...
34
votes
7answers
5k views
How to benchmark efficiency of PHP script
I want to know what is the best way to benchmark my PHP scripts. Does not matter if a cron job, or webpage or web service.
I know i can use microtime but is it really giving me the real time of a PHP ...
1
vote
3answers
139 views
Fast integer validation with type casting - But is it good/bad practice?
I was doing some benchmarking experiments I fell upon the idea of testing type casting versus functions that check for specific data type. Specifically (int) vs is_int(). My theoretical stand-point is ...
0
votes
0answers
58 views
Dirty or Raw - Where Speed is Essential
I am trying to speed up my code as fast as possible. While I am talking milliseconds it does and can indeed make a difference to what we are doing.
In a continuous loop we are connecting to a remote ...
0
votes
2answers
110 views
Is prefetching mysql records at the beginning faster than fetching the same data during a call?
I have this doubt: I have a php that retrieves results from a mysql table. In terms of optimization, would it be wiser to retrieve the data at the beginning of the php script so that I can use it ...
2
votes
7answers
301 views
“About a hour ago” logic in PHP / SQL and how it effects performance?
Lately I have been facing websites with "X hours ago", "X days ago" features. (including stackoverflow)
Like,
Anil played a game around a hour ago.
Anil leveled up 2 days ago.
Anil posted this ...
2
votes
5answers
340 views
Php CPU cycle benchmarking
We have ported an important module of a website to Symfony from plain PHP.
This module has a lot of page hits, and we need to judge additional hardware requirements (if any) because of this. We want ...
2
votes
1answer
2k views
Apache2 Optimization Tips for High Volume of Lightweight connections
We have a very lightweight tracking script written in PHP, running on Apache/2.2.14 (Ubuntu). The script will receive a high number of concurrent connections, but each connection will be fast. ...
0
votes
1answer
582 views
Simple Stored Procedures are slower than standard queries! why?
One of benefits of Stored Procedures is good speed. I ran some tests and got some strange results!
Scenario: There are 2 InnoDB tables, Agents and Companies. Each agent is related to ONE company via ...




