我需要为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;
有没有办法从这里设置该选项?
答案 0 :(得分:1)
它采用以下方式修复:
$config['mongo_db']['timeout'] = 100 or -1;
否则请检查上面的语法:
$cursor = $collection->find();
$cursor->timeout(-1);