2005-12-22 06:39:02 +01:00
|
|
|
show status like "binlog_cache_use";
|
|
|
|
Variable_name Value
|
|
|
|
Binlog_cache_use 0
|
|
|
|
show status like "binlog_cache_disk_use";
|
|
|
|
Variable_name Value
|
|
|
|
Binlog_cache_disk_use 0
|
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (a int) engine=innodb;
|
|
|
|
show status like "binlog_cache_use";
|
|
|
|
Variable_name Value
|
|
|
|
Binlog_cache_use 1
|
|
|
|
show status like "binlog_cache_disk_use";
|
|
|
|
Variable_name Value
|
|
|
|
Binlog_cache_disk_use 1
|
|
|
|
begin;
|
|
|
|
delete from t1;
|
|
|
|
commit;
|
|
|
|
show status like "binlog_cache_use";
|
|
|
|
Variable_name Value
|
|
|
|
Binlog_cache_use 2
|
|
|
|
show status like "binlog_cache_disk_use";
|
|
|
|
Variable_name Value
|
|
|
|
Binlog_cache_disk_use 1
|
|
|
|
drop table t1;
|
|
|
|
show status like "Innodb_buffer_pool_pages_total";
|
|
|
|
Variable_name Value
|
2008-09-08 16:23:55 -04:00
|
|
|
Innodb_buffer_pool_pages_total 51_
|
2005-12-22 06:39:02 +01:00
|
|
|
show status like "Innodb_page_size";
|
|
|
|
Variable_name Value
|
|
|
|
Innodb_page_size 16384
|
|
|
|
show status like "Innodb_rows_deleted";
|
|
|
|
Variable_name Value
|
|
|
|
Innodb_rows_deleted 2000
|
|
|
|
show status like "Innodb_rows_inserted";
|
|
|
|
Variable_name Value
|
|
|
|
Innodb_rows_inserted 2000
|
|
|
|
show status like "Innodb_rows_updated";
|
|
|
|
Variable_name Value
|
|
|
|
Innodb_rows_updated 0
|