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

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1, t2, t3;
  2. flush status;
  3. set autocommit=0;
  4. create table t1 (a int not null) engine=bdb;
  5. insert into t1 values (1),(2),(3);
  6. select * from t1;
  7. a
  8. 1
  9. 2
  10. 3
  11. show status like "Qcache_queries_in_cache";
  12. Variable_name Value
  13. Qcache_queries_in_cache 0
  14. drop table t1;
  15. set autocommit=1;
  16. create table t1 (a int not null) engine=bdb;
  17. begin;
  18. insert into t1 values (1),(2),(3);
  19. select * from t1;
  20. a
  21. 1
  22. 2
  23. 3
  24. show status like "Qcache_queries_in_cache";
  25. Variable_name Value
  26. Qcache_queries_in_cache 0
  27. drop table t1;
  28. create table t1 (a int not null) engine=bdb;
  29. create table t2 (a int not null) engine=bdb;
  30. create table t3 (a int not null) engine=bdb;
  31. insert into t1 values (1),(2);
  32. insert into t2 values (1),(2);
  33. insert into t3 values (1),(2);
  34. select * from t1;
  35. a
  36. 1
  37. 2
  38. select * from t2;
  39. a
  40. 1
  41. 2
  42. select * from t3;
  43. a
  44. 1
  45. 2
  46. show status like "Qcache_queries_in_cache";
  47. Variable_name Value
  48. Qcache_queries_in_cache 3
  49. show status like "Qcache_hits";
  50. Variable_name Value
  51. Qcache_hits 0
  52. begin;
  53. select * from t1;
  54. a
  55. 1
  56. 2
  57. select * from t2;
  58. a
  59. 1
  60. 2
  61. select * from t3;
  62. a
  63. 1
  64. 2
  65. show status like "Qcache_queries_in_cache";
  66. Variable_name Value
  67. Qcache_queries_in_cache 3
  68. show status like "Qcache_hits";
  69. Variable_name Value
  70. Qcache_hits 0
  71. insert into t1 values (3);
  72. insert into t2 values (3);
  73. insert into t1 values (4);
  74. select * from t1;
  75. a
  76. 1
  77. 2
  78. 3
  79. 4
  80. select * from t2;
  81. a
  82. 1
  83. 2
  84. 3
  85. select * from t3;
  86. a
  87. 1
  88. 2
  89. show status like "Qcache_queries_in_cache";
  90. Variable_name Value
  91. Qcache_queries_in_cache 3
  92. show status like "Qcache_hits";
  93. Variable_name Value
  94. Qcache_hits 0
  95. commit;
  96. show status like "Qcache_queries_in_cache";
  97. Variable_name Value
  98. Qcache_queries_in_cache 1
  99. drop table if exists t1, t2, t3;