摘要:
一):innodb_flush_log_at_trx_commit 参数解释: 1):参数解释 0:log buffer将每秒一次地写入log file中,并且log file的flush(刷到磁盘)操作同时进行。该模式下在事务提交的时候,不会主动触发写入磁盘的操作。 1:每次事务提交时MySQL都 阅读全文
摘要:
1、判断一个变量是否为空 的方法 1、变量通过" "引号引起来 #!/bin/sh para1= if [ ! -n "$para1" ]; then echo "IS NULL" else echo "NOT NULL" fi 2、直接通过变量判断 #!/bin/sh para1= if [ ! 阅读全文