⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bdb_cache.result

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 RESULT
字号:
drop table if exists t1, t2, t3;flush status;set autocommit=0;create table t1 (a int not null) engine=bdb;insert into t1 values (1),(2),(3);select * from t1;a123show status like "Qcache_queries_in_cache";Variable_name	ValueQcache_queries_in_cache	0drop table t1;set autocommit=1;create table t1 (a int not null) engine=bdb;begin;insert into t1 values (1),(2),(3);select * from t1;a123show status like "Qcache_queries_in_cache";Variable_name	ValueQcache_queries_in_cache	0drop table t1;create table t1 (a int not null) engine=bdb;create table t2 (a int not null) engine=bdb;create table t3 (a int not null) engine=bdb;insert into t1 values (1),(2);insert into t2 values (1),(2);insert into t3 values (1),(2);select * from t1;a12select * from t2;a12select * from t3;a12show status like "Qcache_queries_in_cache";Variable_name	ValueQcache_queries_in_cache	3show status like "Qcache_hits";Variable_name	ValueQcache_hits	0begin;select * from t1;a12select * from t2;a12select * from t3;a12show status like "Qcache_queries_in_cache";Variable_name	ValueQcache_queries_in_cache	3show status like "Qcache_hits";Variable_name	ValueQcache_hits	0insert into t1 values (3);insert into t2 values (3);insert into t1 values (4);select * from t1;a1234select * from t2;a123select * from t3;a12show status like "Qcache_queries_in_cache";Variable_name	ValueQcache_queries_in_cache	3show status like "Qcache_hits";Variable_name	ValueQcache_hits	0commit;show status like "Qcache_queries_in_cache";Variable_name	ValueQcache_queries_in_cache	1drop table if exists t1, t2, t3;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -