stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


Sam Blum's Benchmark Tests







Sam Blum's Benchmark Tests

Sam Blum's Benchmark Tests 07/24/2002 01:01 PM

Every day i see posts in the php newsgroups for what is the fastest way to do this or that. Well the best way to learn the subtleties of PHP is to benchmark things yourself. Sam Blum has done a fantastic job here. The only thing missing is a PHP version number so we know what version of PHP is being tested. Luckily he posted the source code. -- John "zeldman.marcel2"




This is a GrokNews Entry: (what is grok?)





Similar Items

Sam Blum's Benchmark Tests

Grok Headline matches for Sam Blum's Benchmark Tests

XML Benchmark 1.3.0


XML Benchmark 1.3.0 02/10/2004 02:55 PM
A C/C++/Java XML parsers benchmarking tool set.

3DX: Benchmark


3DX: Benchmark 04/27/2004 03:59 PM
New Website

PHP Benchmark


PHP Benchmark 11/18/2003 10:13 PM
Sebastian is doing some neat work on testing performance. I found it hard to decipher the data, so I graphed it in Excel.

PHP Sebastian Benchmark:

There seems to be some drop-off in performance in PHP 4.3.4. I guess the core developers are putting their energies into PHP 5.

XML Benchmark 1.2.2


XML Benchmark 1.2.2 10/29/2003 12:11 AM
A C/C++/Java XML parsers benchmarking tool set.

XML Benchmark


XML Benchmark 02/10/2004 01:26 PM
New Results Published

VIA AES Benchmark


VIA AES Benchmark 05/20/2004 10:08 AM

Far Cry Benchmark


Far Cry Benchmark 07/20/2004 04:07 PM

Far Cry Benchmark 1.2


Far Cry Benchmark 1.2 07/23/2004 04:21 PM

Benchmark-Timer-0.6.1


Benchmark-Timer-0.6.1 09/16/2004 05:08 PM

HardwareOC Far Cry benchmark v1.2.1


HardwareOC Far Cry benchmark v1.2.1 07/26/2004 08:59 AM

HardwareOC Far Cry Benchmark 1.3


HardwareOC Far Cry Benchmark 1.3 08/10/2004 10:38 AM

Benchmark-Timer-0.6


Benchmark-Timer-0.6 09/02/2004 05:20 PM

Test-Benchmark-0.002


Test-Benchmark-0.002 12/20/2003 06:05 PM

Benchmark::Timer 0.6


Benchmark::Timer 0.6 09/02/2004 08:55 PM
A Perl extension to benchmark code, with or without statistical confidence.

Test-Benchmark-0.001


Test-Benchmark-0.001 12/16/2003 11:05 PM

Test-Benchmark-0.003


Test-Benchmark-0.003 12/22/2003 06:32 PM

Benchmark-Forking-0.99


Benchmark-Forking-0.99 09/05/2004 04:46 PM

OCaml Benchmark


OCaml Benchmark 08/18/2004 05:01 PM
Initial import

First Athlon64 X2 Benchmark


First Athlon64 X2 Benchmark 04/17/2005 06:17 AM

IBM and HP take phony benchmark war up
several notches


IBM and HP take phony benchmark war up
several notches
11/07/2003 11:02 AM
Winning times

Benchmark-Thread-Size-0.07


Benchmark-Thread-Size-0.07 12/28/2003 11:44 PM

Bioinformatics Benchmark System 3.0


Bioinformatics Benchmark System 3.0 08/12/2004 03:26 PM
A bioinformatics benchmark system for platform performance measurement.

Benchmark de Debian y Gentoo


Benchmark de Debian y Gentoo 01/05/2004 08:35 AM

How to Benchmark the UT2k4 Demo


How to Benchmark the UT2k4 Demo 02/12/2004 12:52 PM

XML Library Benchmark and NSIS 2.0


XML Library Benchmark and NSIS 2.0 02/11/2004 01:13 AM

According to latest XMLBench results, LibXML2 is the clear winner.  Hopefully, StAX parsers will be included in the benchmark soon.

Final version of Nullsoft Scriptable Install System 2.0 is out.


UMark (UT2004 Benchmark)


UMark (UT2004 Benchmark) 05/29/2004 12:25 PM
UMark 1.2.0 ready to bench!

Database benchmark wars: What you need
to know


Database benchmark wars: What you need
to know
08/09/2002 11:09 PM
CNET Aug 9 2002 10:08PM ET

Driv3r Screenshots - Benchmark Results


Driv3r Screenshots - Benchmark Results 03/19/2005 02:30 AM

Palm and Pocket PC Benchmark Tools


Palm and Pocket PC Benchmark Tools 04/29/2004 10:25 AM

Ask Jeeves stock drops below key
benchmark


Ask Jeeves stock drops below key
benchmark
07/19/2004 02:39 PM
SiliconValley.com Jul 19 2004 6:39PM GMT

New Opterons extend AMD benchmark
leadership


New Opterons extend AMD benchmark
leadership
11/17/2003 11:37 AM

Benchmarking Perl scripts with
Benchmark.pm


Benchmarking Perl scripts with
Benchmark.pm
08/09/2004 05:42 AM
CNET Aug 9 2004 10:10AM GMT

Windows x64 Science Benchmark Released


Windows x64 Science Benchmark Released 03/23/2005 01:30 PM

Benchmark Road and Recreation Maps


Benchmark Road and Recreation Maps 06/22/2005 02:06 AM
I'm a big fan of good maps. They come in quite helpful when flying over new territory, driving somewhere new, etc. And I like to know where I am and what's nearby. A few years ago I discovered Benchmark Maps. They produce maps for several states in the western United States so I now own one for Utah as well. I already have two sets of well worn maps: California and Nevada. But next weekend I'm heading out on...

Ask Jeeves stock dips below key
benchmark


Ask Jeeves stock dips below key
benchmark
07/19/2004 08:09 PM
SiliconValley.com Jul 19 2004 10:03PM GMT

Revisiting C# and Java RegEx Benchmark


Revisiting C# and Java RegEx Benchmark 01/18/2004 03:45 AM

Last year, these benchmark  ;results became hot points of contention between Java and .NET developers.What the results suggested was that Java regular expression engines are significantly faster than .NET's Regex.

I thought it might be fun to port one of the fastest Java regular expression engines to J# and see how it performs compared to .NET's Regex.  I chose the dk.brics.automaton engine because it seemed easiest to port.  It was.  When I ran a straight-forward C# port of regtest.java on the J# version of dk.brics.automaton and compiled singleline Regex, I got these results:

dk.brics.automaton 2303 milliseconds>
Regex 2894 milliseconds>

I also ran regtest.java on the original dk.brics.automaton and Java's built-in regular expression engine.  Results were:

dk.brics.automaton 511 milliseconds>
java.util.regex 1061 milliseconds>

Based on these admittedly informal results, Regex performance is probaly not caused by bad design or implementation of regular expression but by performance issues that may exist within CLR and core classes.  Since I lack the enthusiasm to dig into the innards except in pursuit of a critical bug, I'll leave it up to the CLR team to chase further.

IMHO, .NET performance is 'good enough' for server-side use at this time so please don't misinterpret this post as an attempt to pull .NET down in favor of Java.  BTW, I won't be using my port of dk.brics.automaton in production because it's seems to miss some patterns that it should have found.


BENCHMARK() is not the only way to
determine successfull MySQL injection


BENCHMARK() is not the only way to
determine successfull MySQL injection
07/06/2004 03:07 PM
Philip Stoev (Jul 06 2004)

Futuremark Launches SPMark™04 Smartphone
Benchmark


Futuremark Launches SPMark™04 Smartphone
Benchmark
08/12/2004 03:22 PM

Federal agencies must set security
benchmark, says US workgroup


Federal agencies must set security
benchmark, says US workgroup
04/13/2004 07:52 PM

Grok Description matches for Sam Blum's Benchmark Tests
GrokA matches for Sam Blum's Benchmark Tests

Sam Blum's Benchmark Tests

The following phrases have been identified by the grok system as matching this entry:

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

Blurring the Line
Between Open Source
& .NET

IBM, Opera Will
Create Multimodal
Browser

Open-source .Net
inches closer to
fruition

The Crash Course
Web Development In
Alabama

O'Reilly:
Open-source .Net
inches closer to
fruition

Mozilla 1.1 Beta
Released

Image Manipulation
with CFMX and JAI

Filters Quick Review
Windows CE primer
When to use a
database-driven Web
site

Filter your MS
Project reports

Java to access Web
resources

Developer is a lost
cause?

Making ballpark
estimates

Introduction to
Smarty - The PHP
Template Engine

PHP Class
'sql2excel' released

PHP Class 'cron'
released

sql2excel
Understanding The
JavaScript Event
Model (part 2)

PHP Accelerator
Author Launches
ionCube Encoder

Enterprise Systems:
Top 100 Power Picks

Developing Custom
PHP Extensions with
Visual C++

Web3D Pushes
Development of 3D
Web Standard

Red Alert: Google
Results on AOL - Now

New PHP
Vulnerability Found

OASIS Forms
WS-Security
Technical Committee

Fast Endorses The
FTC Search Engine
Disclosure

Questions to ask SEO
company

Deflect requests for
free help

Checking UNIX Server
Performace

When is a developer
a lost cause?

Survive
self-inflicted
disaster

Spreadsheets as
Oracle tables

cron
Caudium 1.2 Released
!

Enterprise PHP
PHP 4.2.2 is out
Sun Addresses
Graphics Market with
New Tools

Using PHP for Date
Processing in Forms

ODP, The Mother of
All Search Engines

Sony Clie PEG-T615C
Review

The Wonderful
Wizards of Google

Guidelines for the
use of <span>

Tim O'Reilly about
the Amazon Web
Services API

Gaga for Google?
When results don't
count

Amazon.com Web
Services

Overture France
Online

UKPlus Joins The
BTLookSmart Network

Excite UK is back
what is grok?