📄 network-conn-pool.h
字号:
/* Copyright (C) 2007 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _NETWORK_CONN_POOL_H_#define _NETWORK_CONN_POOL_H_#include <glib.h>#include "network-socket.h"typedef struct { GHashTable *users; /** GHashTable<GString, GQueue<network_connection_pool_entry>> */ guint max_idle_connections; guint min_idle_connections;} network_connection_pool;typedef struct { network_socket *sock; /** the idling socket */ network_connection_pool *pool; /** a pointer back to the pool */ GTimeVal added_ts; /** added at ... we want to make sure we don't hit wait_timeout */} network_connection_pool_entry;network_socket *network_connection_pool_get(network_connection_pool *pool, GString *username, GString *default_db);network_connection_pool_entry *network_connection_pool_add(network_connection_pool *pool, network_socket *sock);void network_connection_pool_remove(network_connection_pool *pool, network_connection_pool_entry *entry);GQueue *network_connection_pool_get_conns(network_connection_pool *pool, GString *username, GString *);network_connection_pool *network_connection_pool_init(void);void network_connection_pool_free(network_connection_pool *pool);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -