如何在CodeIgniter中设置MongoDB数据库连接超时?

时间:2016-12-07 05:55:10

标签: php mongodb codeigniter dbconnection

我需要为MongoDB Codeigniter连接设置超时。 我的config文件是

          $config['mongo_db']['active'] = 'default';
          $config['mongo_db']['default']['no_auth'] = FALSE;
          $config['mongo_db']['default']['hostname'] = 'SHLY_DBSERVER';
          $config['mongo_db']['default']['port'] = '27018';
          $config['mongo_db']['default']['username'] = 'user';
          $config['mongo_db']['default']['password'] = '123';
          $config['mongo_db']['default']['database'] = 'testdb';
          $config['mongo_db']['default']['db_debug'] = TRUE;
          $config['mongo_db']['default']['return_as'] = 'array';
          $config['mongo_db']['default']['write_concerns'] = (int)1;
          $config['mongo_db']['default']['journal'] = TRUE;
          $config['mongo_db']['default']['read_preference'] = NULL;
          $config['mongo_db']['default']['read_preference_tags'] = NULL;
          $config['mongo_db']['default']['no_auth'] = FALSE;

有没有办法从这里设置该选项?

1 个答案:

答案 0 :(得分:1)

它采用以下方式修复:

$config['mongo_db']['timeout'] = 100 or -1;

否则请检查上面的语法:

$cursor = $collection->find();
$cursor->timeout(-1);