Я установил (и уже давно использую его) драйвер mongocxx через vcpkg, и все установлено правильно и отлично работает в версии Debug (я использую Visual Studio 2017, и мое приложение представляет собой Windows Form c ++ (CLR)) приложение).В моем приложении я получаю пул соединений и покупаю клиента каждый раз, когда загружаю некоторые данные на сервер.Типичный интервал автоматической загрузки данных - 10 минут.Мои настройки
// Create pool (once)
mongocxx::uri uri_remote{ "mongodb://user:pwd@remote-host:PORT/database-name?minPoolSize=2&maxPoolSize=5" };
mongocxx::pool pool_remote{ uri_remote };
// The code below runs as a scheduled process after every 10 minutes
auto client_remote = pool_remote.acquire();
// The client is returned to the pool when it goes out of scope.
auto collection_remote = (*client_remote)["database-name"]["collection-1-name"];
auto collection_st_remote = (*client_remote)["database-name"]["collection-2-name"];
bsoncxx::document::value doc1= document
<< std::string(keys[0]) << entries[0] // A short string (device identifier)
<< std::string(keys[1]) << entries[1] // A short string location
<< std::string(keys[2]) << bsoncxx::types::b_date(std::chrono::system_clock::now()) // Current insert time
<< std::string(keys[3]) << entries[2] // String: updated entry name
<< std::string(keys[4]) << entries[3] // String: Updated entry description
<< std::string(keys[5]) << <float number>
<< std::string(keys[6]) << <integer>
<< finalize;
// Below are the statuses I'm recording. A binary array (length = 7)
bsoncxx::document::value doc2= document
<< std::string(status_keys[0]) << statuses[0]
<< std::string(status_keys[1]) << statuses[1]
<< std::string(status_keys[2]) << statuses[2]
<< std::string(status_keys[3]) << statuses[3]
<< std::string(status_keys[4]) << bsoncxx::types::b_date(std::chrono::system_clock::now())
<< std::string(status_keys[5]) << statuses[4] // Device identifier
<< std::string(status_keys[6]) << statuses[5]
<< finalize;
// And finally insert
try {
// Insert remote. lines of code for doc1 and doc2 are skipped
collection_remote.insert_one(doc1.view());
collection_st_remote.insert_one(doc2.view());
// I'm skipping the rest of the code section here (just a catch statement after this). . .
Проблема, документы базы данных загружаются каждые 10 минут без проблем в версии отладки, но с версией выпуска (когда я загрузил версию выпуска своего приложения и начал ее использовать)вставка монго не работает каждый раз 10 минут.Он просто пропускает / пропускает некоторые записи (в основном, одну после успешной попытки в соответствии с тем, что я наблюдал).
С загруженной версией выпуска на удаленном компьютере я не могу выполнить какую-либо отладку, даже если я запускал отладочную версиюкоторый отлично работает и с более короткими интервалами (например, по 1 минуте).