table_types.pl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:6k
源码类别:

模拟服务器

开发平台:

C/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=isam","varchar");
  62. test($table_name,"type=myisam pack_keys=1","varchar");
  63. test($table_name,"type=myisam pack_keys=0","varchar");
  64. test($table_name,"type=myisam pack_keys=0 checksum=1","varchar");
  65. #test("type=heap","char"); # The default table sizes is a bit big for this one
  66. $dbh->disconnect;
  67. exit (0);
  68. sub test {
  69.   my ($name,$options,$chartype)=@_;
  70.   
  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.   
  82.   if ($opt_lock_tables)
  83.   {
  84.     $sth = $dbh->do("LOCK TABLES $name WRITE") || die $DBI::errstr;
  85.   }
  86.   
  87.   if ($opt_fast && defined($server->{vacuum}))
  88.   {
  89.     $server->vacuum($dbh,1);
  90.   }
  91.   
  92.   ####
  93.   #### Insert $total_rows records in order, in reverse order and random.
  94.   ####
  95.   
  96.   $loop_time=new Benchmark;
  97.   
  98.   if ($opt_fast_insert)
  99.   {
  100.     $query="insert into $name values ";
  101.   }
  102.   else
  103.   {
  104.     $query="insert into $name (id,id2,id3,dummy1) values ";
  105.   }
  106.   
  107.   if (($opt_fast || $opt_fast_insert) && $limits->{'multi_value_insert'})
  108.   {
  109.     $query_size=$server->{'limits'}->{'query_size'};
  110.     
  111.     print "Inserting $opt_loop_count multiple-value rows in ordern";
  112.     $res=$query;
  113.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  114.     {
  115.       $tmp= "($i,$i,$i,'ABCDEFGHIJ'),";
  116.       if (length($tmp)+length($res) < $query_size)
  117.       {
  118. $res.= $tmp;
  119.       }
  120.       else
  121.       {
  122. $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  123. $res=$query . $tmp;
  124.       }
  125.     }
  126.     print "Inserting $opt_loop_count multiple-value rows in reverse ordern";
  127.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  128.     {
  129.       $tmp= "(" . ($total_rows-1-$i) . "," .($total_rows-1-$i) .
  130. "," .($total_rows-1-$i) . ",'BCDEFGHIJK'),";
  131.       if (length($tmp)+length($res) < $query_size)
  132.       {
  133. $res.= $tmp;
  134.       }
  135.       else
  136.       {
  137. $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  138. $res=$query . $tmp;
  139.       }
  140.     }
  141.     print "Inserting $opt_loop_count multiple-value rows in random ordern";
  142.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  143.     {
  144.       $tmp= "(" . $random[$i] . "," . $random[$i] . "," . $random[$i] .
  145. ",'CDEFGHIJKL')," or die $DBI::errstr;
  146.       if (length($tmp)+length($res) < $query_size)
  147.       {
  148. $res.= $tmp;
  149.       }
  150.       else
  151.       {
  152. $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  153. $res=$query . $tmp;
  154.       }
  155.     }
  156.     $sth = $dbh->do(substr($res,0,length($res)-1)) or die $DBI::errstr;
  157.   }
  158.   else
  159.   {
  160.     print "Inserting $opt_loop_count rows in ordern";
  161.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  162.     {
  163.       $sth = $dbh->do($query . "($i,$i,$i,'ABCDEFGHIJ')") or die $DBI::errstr;
  164.     }
  165.     
  166.     print "Inserting $opt_loop_count rows in reverse ordern";
  167.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  168.     {
  169.       $sth = $dbh->do($query . "(" . ($total_rows-1-$i) . "," .
  170.       ($total_rows-1-$i) . "," .
  171.       ($total_rows-1-$i) . ",'BCDEFGHIJK')")
  172. or die $DBI::errstr;
  173.     }
  174.     
  175.     print "Inserting $opt_loop_count rows in random ordern";
  176.     
  177.     for ($i=0 ; $i < $opt_loop_count ; $i++)
  178.     {
  179.       $sth = $dbh->do($query . "(". $random[$i] . "," . $random[$i] .
  180.       "," . $random[$i] . ",'CDEFGHIJKL')") or die $DBI::errstr;
  181.     }
  182.   }
  183.   
  184.   $end_time=new Benchmark;
  185.   print "Time for insert (" . ($total_rows) . "): " .
  186.     timestr(timediff($end_time, $loop_time),"all") . "nn";
  187.   
  188.   if ($opt_fast && defined($server->{vacuum}))
  189.   {
  190.     $server->vacuum($dbh,1);
  191.   }
  192.   
  193.   $sth=$dbh->prepare("show table status like '$name'");
  194.   $sth->execute || die "Show table status returned error: $DBI::errstrn";
  195.   while (@row = $sth->fetchrow_array)
  196.   {
  197.     print join("|  ",@row) . " |n";
  198.   }
  199.   $dbh->do("drop table $name") if (!$opt_skip_delete);
  200. }