3 * Benchmark SQL DELETE vs SQL TRUNCATE.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 require_once __DIR__
. '/Benchmarker.php';
27 * Maintenance script that benchmarks SQL DELETE vs SQL TRUNCATE.
31 class BenchmarkDeleteTruncate
extends Benchmarker
{
32 public function __construct() {
33 parent
::__construct();
34 $this->addDescription( 'Benchmarks SQL DELETE vs SQL TRUNCATE.' );
37 public function execute() {
38 $dbw = $this->getDB( DB_MASTER
);
40 $test = $dbw->tableName( 'test' );
41 $dbw->query( "CREATE TABLE IF NOT EXISTS /*_*/$test (
42 test_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
43 text varbinary(255) NOT NULL
46 $this->insertData( $dbw );
48 $start = microtime( true );
50 $this->delete( $dbw );
52 $end = microtime( true );
54 echo "Delete: " . sprintf( "%6.3fms", ( $end - $start ) * 1000 );
57 $this->insertData( $dbw );
59 $start = microtime( true );
61 $this->truncate( $dbw );
63 $end = microtime( true );
65 echo "Truncate: " . sprintf( "%6.3fms", ( $end - $start ) * 1000 );
68 $dbw->dropTable( 'test' );
72 * @param Database $dbw
75 private function insertData( $dbw ) {
76 $range = range( 0, 1024 );
78 foreach ( $range as $r ) {
79 $data[] = [ 'text' => $r ];
81 $dbw->insert( 'test', $data, __METHOD__
);
85 * @param Database $dbw
88 private function delete( $dbw ) {
89 $dbw->delete( 'text', '*', __METHOD__
);
93 * @param Database $dbw
96 private function truncate( $dbw ) {
97 $test = $dbw->tableName( 'test' );
98 $dbw->query( "TRUNCATE TABLE $test" );
102 $maintClass = "BenchmarkDeleteTruncate";
103 require_once RUN_MAINTENANCE_IF_MAIN
;