最近刚刚接手同事的OpenResty的项目,发现对mysql,redis的操作没有用连接池,故对此进行了改造。MYSQL主要是通过mysql_pool.lua 和 dbutil.lua 来封装对数据库的操作mysql_pool.lua: 1 module("mysql_pool", package....
分类:
数据库 时间:
2014-07-07 21:44:07
阅读次数:
591
使用数据连接池(TIWDataModulePool).新建工程时勾选 Pool Data Connections:新增的 Pool(TIWDataModulePool) 被放在 ServerController 的窗体上(其实它也是个数据模块), 需要知道的变化是它增加了两个函数:function ...
分类:
数据库 时间:
2014-07-07 20:37:22
阅读次数:
204
Before I owned a pool I always thought that pool maintenance was going to be a real pain and troublesome. I had heard many horror stories from friends...
分类:
其他好文 时间:
2014-06-30 21:58:20
阅读次数:
316
Type the following command to install ntp:# yum install -y ntpTurn on service:#chkconfig ntpd onSynchronize the system clock with 0.pool.ntp.org serve...
分类:
其他好文 时间:
2014-06-28 14:45:54
阅读次数:
185
1.基本结构:INNODB用leastrecentlyused(LRU)算法来管理他的buffer_pool。buffer_pool在内部被分隔为两个list.ayounglist和aoldlist.Younglist存储那些高频使用的缓存数据(默认占整个BUFFER的5/8)Oldlist存储那些低频使用的数据(默认占整个BUFFER的3/8)2.使用机制:当一个..
分类:
数据库 时间:
2014-06-28 06:06:25
阅读次数:
550
#include "common.h"#include "pool.h"#include static inline void *objmem_to_obj(void *objmem){return objmem + sizeof(pool_obj_head_t);}static inline vo...
分类:
其他好文 时间:
2014-06-27 21:24:59
阅读次数:
292
//以下为rtsp的服务器A 1 #include 2 3 #include 4 #include 5 6 static gboolean 7 timeout (GstRTSPServer * server) 8 { 9 GstRTSPSessionPool *pool;10 11 ...
分类:
其他好文 时间:
2014-06-25 14:21:25
阅读次数:
648
每一个iPhone程序都包含一个UIApplication对象,它管理整个程序的生命周期,从加载第一个显示界面开始,并且监听系统事件、程序事件调度整个程序的执行。
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int ret...
分类:
移动开发 时间:
2014-06-25 06:55:38
阅读次数:
268
就是用NTP了,通过外部的服务同步时间. ntpdate us.pool.ntp.org | logger -t NTP 如果没有ntpdate ,可以使用 yum install ntpdate 进行安装。 当然最好放在crontab里面,各一段时间同步一次就OK. crontab -e * * ...
分类:
其他好文 时间:
2014-06-23 08:28:55
阅读次数:
444
1、安装配置freetds wget http://mirrors.xmu.edu.cn/ubuntu/archive/pool/main/f/freetds/freetds_0.82.orig.tar.gz tar zxf freetds_0.82.orig.tar.gz
分类:
数据库 时间:
2014-06-23 00:01:54
阅读次数:
415