table_types.pl
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/usr/bin/perl
  2. #
  3. use DBI;
  4. use Benchmark;
  5. $opt_loop_count=100000; # number of rows/3
  6. $small_loop_count=10; # Loop for full table retrieval
  7. $range_loop_count=$small_loop_count*50;
  8. $many_keys_loop_count=$opt_loop_count;
  9. chomp($pwd = `pwd`); $pwd = "." if ($pwd eq '');
  10. require "$pwd/bench-init.pl" || die "Can't read Configuration file: $!n";
  11. if ($opt_loop_count < 256)
  12. {
  13.   $opt_loop_count=256; # Some tests must have some data to work!
  14. }
  15. if ($opt_small_test)
  16. {
  17.   $opt_loop_count/=100;
  18.   $range_loop_count/=10;
  19.   $many_keys_loop_count=$opt_loop_count/10;
  20. }
  21. elsif ($opt_small_tables)
  22. {
  23.   $opt_loop_count=10000; # number of rows/3
  24.   $many_keys_loop_count=$opt_loop_count;
  25. }
  26. elsif ($opt_small_key_tables)
  27. {
  28.   $many_keys_loop_count/=10;
  29. }
  30. print "Testing the speed difference between some table typesn";
  31. ####
  32. #### Generating random keys
  33. ####
  34. print "Generating random keysn";
  35. $random[$opt_loop_count]=0;
  36. for ($i=0 ; $i < $opt_loop_count ; $i++)
  37. {
  38.   $random[$i]=$i+$opt_loop_count;
  39. }
  40. my $tmpvar=1;
  41. for ($i=0 ; $i < $opt_loop_count ; $i++)
  42. {
  43.   $tmpvar^= ((($tmpvar + 63) + $i)*3 % $opt_loop_count);
  44.   $swap=$tmpvar % $opt_loop_count;
  45.   $tmp=$random[$i]; $random[$i]=$random[$swap]; $random[$swap]=$tmp;
  46. }
  47. $total_rows=$opt_loop_count*3;
  48. ####
  49. ####  Connect and start timeing
  50. ####
  51. $start_time=new Benchmark;
  52. $dbh = $server->connect();
  53. ####
  54. #### Create needed tables
  55. ####
  56. $table_name="bench1";
  57. test($table_name,"type=isam","char");
  58. test($table_name,"type=myisam pack_keys=0","char");
  59. test($table_name,"type=myisam pack_keys=0","char");
  60. test($table_name,"type=myisam pack_keys=0 checksum=1","char");
  61. test($table_name,"type=myisam pack_keys=1","char");
  62. test($table_name,"type=isam","varchar");
  63. test($table_name,"type=myisam pack_keys=1","varchar");
  64. test($table_name,"type=myisam pack_keys=0","varchar");
  65. test($table_name,"type=myisam pack_keys=0 checksum=1","varchar");
  66. #test("type=heap","char"); # The default table sizes is a bit big for this one
  67. $dbh->disconnect;
  68. exit (0);
  69. sub test {
  70.   my ($name,$options,$chartype)=@_;
  71.   print "nTesting with options: '$options'n";
  72.   $dbh->do("drop table $name");
  73.   do_many($dbh,$server->create("$name",
  74.        ["id int NOT NULL",
  75. "id2 int NOT NULL",
  76. "id3 int NOT NULL",
  77. "dummy1 $chartype(30)"],
  78.        ["primary key (id,id2)",
  79. "index index_id3 (id3)"],
  80.       $options));
  81.   if ($opt_lock_tables)
  82.   {
  83.     $sth = $dbh->do("LOCK TABLES $name WRITE") || die $DBI::errstr;
  84.   }
  85.   if ($opt_fast && defined($server->{vacuum}))
  86.   {
  87.     $server->vacuum($dbh,1);
  88.   }
  89.   ####
  90.   #### Insert $total_rows records in order, in reverse order and random.
  91.   ####
  92.   $loop_time=new Benchmark;
  93.   if ($opt_fast_insert)
  94.   {
  95.     $query="insert into $name values ";
  96.   }
  97.   else
  98.   {
  99.     $query="insert into $name (id,id2,id3,dummy1) values ";
  100.   }
  101.   if (($opt_fast || $opt_fast_insert) && $limits->{'multi_value_insert'})
  102.   {
  103.     $query_size=$server->{'limits'}->{'query_size'};
  104.     print "Inserting $opt_loop_count multiple-value rows in ordern";
  105.     $res=$query;
  106.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  107.     {
  108.       $tmp= "($i,$i,$i,'ABCDEFGHIJ'),";
  109.       if (length($tmp)+length($res) < $query_size)
  110.       {
  111. $res.= $tmp;
  112.       }
  113.       else
  114.       {
  115. $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  116. $res=$query . $tmp;
  117.       }
  118.     }
  119.     print "Inserting $opt_loop_count multiple-value rows in reverse ordern";
  120.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  121.     {
  122.       $tmp= "(" . ($total_rows-1-$i) . "," .($total_rows-1-$i) .
  123. "," .($total_rows-1-$i) . ",'BCDEFGHIJK'),";
  124.       if (length($tmp)+length($res) < $query_size)
  125.       {
  126. $res.= $tmp;
  127.       }
  128.       else
  129.       {
  130. $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  131. $res=$query . $tmp;
  132.       }
  133.     }
  134.     print "Inserting $opt_loop_count multiple-value rows in random ordern";
  135.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  136.     {
  137.       $tmp= "(" . $random[$i] . "," . $random[$i] . "," . $random[$i] .
  138. ",'CDEFGHIJKL')," or die $DBI::errstr;
  139.       if (length($tmp)+length($res) < $query_size)
  140.       {
  141. $res.= $tmp;
  142.       }
  143.       else
  144.       {
  145. $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  146. $res=$query . $tmp;
  147.       }
  148.     }
  149.     $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  150.   }
  151.   else
  152.   {
  153.     print "Inserting $opt_loop_count rows in ordern";
  154.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  155.     {
  156.       $sth = $dbh->do($query . "($i,$i,$i,'ABCDEFGHIJ')") or die $DBI::errstr;
  157.     }
  158.     print "Inserting $opt_loop_count rows in reverse ordern";
  159.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  160.     {
  161.       $sth = $dbh->do($query . "(" . ($total_rows-1-$i) . "," .
  162.       ($total_rows-1-$i) . "," .
  163.       ($total_rows-1-$i) . ",'BCDEFGHIJK')")
  164. or die $DBI::errstr;
  165.     }
  166.     print "Inserting $opt_loop_count rows in random ordern";
  167.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  168.     {
  169.       $sth = $dbh->do($query . "(". $random[$i] . "," . $random[$i] .
  170.       "," . $random[$i] . ",'CDEFGHIJKL')") or die $DBI::errstr;
  171.     }
  172.   }
  173.   $end_time=new Benchmark;
  174.   print "Time for insert (" . ($total_rows) . "): " .
  175.     timestr(timediff($end_time, $loop_time),"all") . "nn";
  176.   if ($opt_fast && defined($server->{vacuum}))
  177.   {
  178.     $server->vacuum($dbh,1);
  179.   }
  180.   $sth=$dbh->prepare("show table status like '$name'");
  181.   $sth->execute || die "Show table status returned error: $DBI::errstrn";
  182.   while (@row = $sth->fetchrow_array)
  183.   {
  184.     print join("|  ",@row) . " |n";
  185.   }
  186.   $dbh->do("drop table $name") if (!$opt_skip_delete);
  187. }