是否有任何C / C ++库可用于postgres连接池?我看过pgpool,它更像是一个中间件。我正在寻找一个可以编码到我的应用程序中的库。
答案 0 :(得分:2)
没有一个好的应用内连接池库。几乎整个社区都使用外部代理,特别是pgbouncer
,因为它具有额外的运营优势。同样,SOCI has a connection pool,但它的用法几乎与pgbouncer
一样广泛。
答案 1 :(得分:2)
你看过libpqxx了吗?它本身并不是一个连接池,但它提供了一个c ++ API来从应用程序代码中抽象出连接处理。这允许应用程序非常容易地构建和管理自己的连接池。
这非常简单,这是一个示例(使用boost for shared_ptr& pqxx)来说明使用工厂方法的池类。您可以想象runQuery方法将从指定的池中获取连接,并调用pqxx API以在底层连接上执行查询。然后它可以将连接返回到池中。
class DbPool {
public:
static db_handle_t create(const string &conn,
uint32_t max = DEFAULT_CON_MAX,
uint32_t min = DEFAULT_CON_MIN);
static pqxx::result runQuery(db_handle_t pool,
const string& query);
private:
DbPool(const string& con, uint32_t max_cons,
uint32_t min_cons);
static boost::ptr_vector<DbPool> pool_; // Keep a static vector of pools,
pqxx::connection *createCon();
void releaseCon(pqxx::connection *c);
uint32_t initializeCons();
pqxx::connection *getCon();
boost::ptr_list<pqxx::connection> m_freeCons;
}