离线安装包准备: 将相关的安装包上传到 /usr/local 目录 并解压到当前目录 1.安装 gcc yum install -y gcc gcc-c++ 2.安装 perl yum install -y perl 3.安装 libevent yum install -y libevent 4.安 ...
分类:
其他好文 时间:
2019-01-21 13:53:07
阅读次数:
161
#include #include #include #include #include #include #include #include #include #include #include #include #include #define MAX_LINE 16384 struct fd_... ...
分类:
其他好文 时间:
2019-01-17 01:17:16
阅读次数:
192
#define evtimer_new(b, cb, arg) event_new((b), -1, 0, (cb), (arg)) #include #include #include #include #include #include #include #include void do_tim... ...
分类:
其他好文 时间:
2019-01-16 23:55:49
阅读次数:
310
缓存的定义:缓存就是在内存中存储的数据备份,当数据没有发生本质变化的时候,我们避免数据的查询操作直接连接数据库,而是去 内容中读取数据,这样就大大降低了数据库的读写次数,而且从内存中读数据的速度要比从数据库查询要快很多。 1、Memcached 协议简单、基于libevent的事件处理、内置内存存储 ...
分类:
系统相关 时间:
2019-01-16 16:34:45
阅读次数:
187
void log_callback(int severity, const char *msg) { char szBuffer[512]; FILE *pFd = fopen("./log.txt", "ab+"); if (pFd == NULL) return; const char *sev... ...
分类:
其他好文 时间:
2019-01-15 10:45:08
阅读次数:
213
1、安装libevent wget https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz tar -zxvf libevent-2.1.8-st ...
分类:
系统相关 时间:
2019-01-13 15:03:15
阅读次数:
202
void http_handler_Get_Download(struct evhttp_request *req, void *arg) { if (req == NULL) { return; } const char *uri = evhttp_request_get_uri(req); st... ...
分类:
Web程序 时间:
2019-01-10 10:47:39
阅读次数:
278
Centos:yum install libevent-devel Ubuntu:apt-get install libevent-dev wget http://memcached.org/latest tar -zxvf memcached-1.xxtar.gz cd memcached-1.x ...
分类:
系统相关 时间:
2019-01-09 17:29:24
阅读次数:
161
执行 memcached 启动命令时,报错,提示:error while loading shared libraries: libevent-2.1.so.6: cannot open shared object file: No such file or directory 查看 memcach ...
分类:
其他好文 时间:
2018-12-30 16:23:31
阅读次数:
264
Memcached简单介绍 简介:Memcached是一个自由开源的,高性能,分布式内存对象缓存系统。 目的:通过缓存数据库查询结果,减少数据库访问次数,以提高动态Web应用的速度、提高可扩展性。 特点:协议简单;基于libevent的事件处理;内置内存存储方式;memcached不互相通信的分布式 ...
分类:
系统相关 时间:
2018-12-18 19:42:43
阅读次数:
231