赞
踩
1) If you would like to take a look at what’s in the “demo_test” table, please remember we had batched the commits (32 ops by default) by default.
So you will need to do “read uncommitted” select to find the just inserted rows:
mysql> set session TRANSACTION ISOLATION LEVEL
-> read uncommitted;
反正就是执行上面语句,将读设置为不受限制,然后再执行:select * from test.demo_test;就会查到两条数据,这样恭喜你,你成功了!
有兴趣请深入研究,也可以研究一下mysql集群处理,mysql-cluster最新版本7.2.4
参考资料
http://blogs.innodb.com/wp/2011/04/nosql-to-innodb-with-memcached/ 简述其特点
http://blogs.innodb.com/wp/2011/04/get-started-with-innodb-memcached-daemon-plugin/ 插件安装及测试
http://blogs.innodb.com/wp/2011/10/innodb-memcached-with-binlog-capability/ 二进制日志即关系到数据备份的一些东西
http://labs.mysql.com/ mysql-innodb-memcache安装包下载,目前只支持linux
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。