关于nodejsmysql超时的问题,The server closed the connection

2017-07-15 16:12:29

wait_timeout 造成  Connection lost,The server closed the connection

在你不没有数据库操作的情况下,8小时后服务会挂点,因为你的数据库设置了超时时间。

解决方案:

  1. 做一个定时,在没短时间访问以下数据库,间隔小于八小时。


  2. function keepalive() {
      connection.query('select 1', [], function(err, result) {
        if(err) return console.log(err);
        // Successul keepalive
      });}setInterval(keepalive, 1000*60*5);

    2.用nodejs mysql的线程池去链接数据库,每当有链接挂掉,就会重新链接。


    = .({
      : ,
      : ,
      : ,
      : ,
      : });



  • 2017-02-24 16:53:58

    PHP 中的Closure

    Closure,匿名函数,又称为Anonymous functions,是php5.3的时候引入的。匿名函数就是没有定义名字的函数。这点牢牢记住就能理解匿名函数的定义了。

  • 2017-03-02 09:45:27

    动态加载js和css

    开发过程中经常需要动态加载js和css,今天特意总结了一下常用的方法。