器量大者,福泽必厚
全部博文(587)
发布时间:2014-01-13 16:52:47
###由衷感谢http://ericlondon.com/2013/02/21/mysql-replication-to-redis-cache-server-via-ruby-gearman-triggers-and-mysql-udf-ubuntu-version.html我只是将他在ubuntu下的过程翻译了一遍!1:install openssl-serveryum -y install openssh-server 2:mysql 安装, 安装过程省略.....3:Install Ruby via.........【阅读全文】
发布时间:2014-01-07 17:08:18
mysql> create table test1(id int unsigned not null,first_name varchar(30) not null,last_name varchar(30) not null,joined date not null,primary key(id),index(id));Query OK, 0 rows affected (0.02 sec)mysql> show create table test1;+-------+----------------------------------------------------------.........【阅读全文】
发布时间:2014-01-05 11:42:42
执行flush tables with read lock以后所有数据库的表都处于锁定状态(库级锁),不能删除表,不能修改数据,加数据等操作,一般这种操作是数据库在线备份的时候用到的,这个时候数据库写是不能写,但是读操作能够正常执行lock tables users read(表级锁);这个操作知识针对具体的单张表,执行这个操作,可以共享读操作,在其他.........【阅读全文】