溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux C++多線程與數(shù)據(jù)庫連接池的實(shí)現(xiàn)

發(fā)布時間:2024-11-15 19:32:06 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在Linux環(huán)境下,使用C++實(shí)現(xiàn)多線程和數(shù)據(jù)庫連接池需要考慮以下幾個方面:

  1. 多線程的實(shí)現(xiàn)

在Linux環(huán)境下,可以使用C++11標(biāo)準(zhǔn)中的<thread>庫來實(shí)現(xiàn)多線程。以下是一個簡單的多線程示例:

#include <iostream>
#include <thread>
#include <vector>

void print_hello(int id) {
    std::cout << "Hello from thread " << id << std::endl;
}

int main() {
    const int num_threads = 5;
    std::vector<std::thread> threads;

    for (int i = 0; i < num_threads; ++i) {
        threads.emplace_back(print_hello, i);
    }

    for (auto& t : threads) {
        t.join();
    }

    return 0;
}
  1. 數(shù)據(jù)庫連接池的實(shí)現(xiàn)

數(shù)據(jù)庫連接池是一種管理數(shù)據(jù)庫連接的技術(shù),它可以復(fù)用已打開的數(shù)據(jù)庫連接,減少創(chuàng)建和關(guān)閉連接的開銷。以下是一個簡單的數(shù)據(jù)庫連接池實(shí)現(xiàn)示例:

#include <iostream>
#include <queue>
#include <mutex>
#include <condition_variable>
#include <memory>
#include <stdexcept>
#include <mysql/mysql.h>

class DatabaseConnectionPool {
public:
    DatabaseConnectionPool(const std::string& url, const std::string& user, const std::string& password, unsigned int max_connections)
        : url_(url), user_(user), password_(password), max_connections_(max_connections) {
        for (unsigned int i = 0; i < max_connections_; ++i) {
            connections_.emplace(create_connection());
        }
    }

    std::shared_ptr<MYSQL> acquire() {
        std::unique_lock<std::mutex> lock(mutex_);
        cond_.wait(lock, [this] { return !connections_.empty(); });
        auto connection = connections_.front();
        connections_.pop();
        return connection;
    }

    void release(std::shared_ptr<MYSQL> connection) {
        if (!connection) {
            throw std::invalid_argument("Invalid connection");
        }
        std::unique_lock<std::mutex> lock(mutex_);
        connections_.push(connection);
        cond_.notify_one();
    }

private:
    std::shared_ptr<MYSQL> create_connection() {
        MYSQL* conn = mysql_init(nullptr);
        if (!mysql_real_connect(conn, url_.c_str(), user_.c_str(), password_.c_str(), nullptr, 0, nullptr, 0)) {
            mysql_close(conn);
            throw std::runtime_error(mysql_error(conn));
        }
        return std::shared_ptr<MYSQL>(conn, [](MYSQL* conn) { mysql_close(conn); });
    }

    std::string url_;
    std::string user_;
    std::string password_;
    unsigned int max_connections_;
    std::queue<std::shared_ptr<MYSQL>> connections_;
    std::mutex mutex_;
    std::condition_variable cond_;
};

在這個示例中,我們使用了一個簡單的隊(duì)列來存儲數(shù)據(jù)庫連接,并使用互斥鎖和條件變量來確保線程安全。當(dāng)需要獲取數(shù)據(jù)庫連接時,我們從隊(duì)列中取出一個連接;當(dāng)釋放數(shù)據(jù)庫連接時,我們將連接放回隊(duì)列中。

要使用這個數(shù)據(jù)庫連接池,你可以在多線程程序中調(diào)用acquire()方法獲取連接,執(zhí)行數(shù)據(jù)庫操作,然后調(diào)用release()方法釋放連接。例如:

int main() {
    DatabaseConnectionPool pool("localhost", "user", "password", 5);

    std::vector<std::thread> threads;
    for (int i = 0; i < 10; ++i) {
        threads.emplace_back([&pool, i]() {
            auto conn = pool.acquire();
            // Perform database operations here
            pool.release(conn);
        });
    }

    for (auto& t : threads) {
        t.join();
    }

    return 0;
}

這個示例中,我們創(chuàng)建了一個包含10個線程的程序,每個線程都從數(shù)據(jù)庫連接池中獲取一個連接,執(zhí)行一些數(shù)據(jù)庫操作,然后釋放連接。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI