摘要:
Web 框架性能排行榜,cakePHP 表现最差 http://www.oschina.net/news/39118/php-framework-benchmarks 阅读全文
posted @ 2013-03-31 23:16
lexus
阅读(303)
评论(0)
推荐(0)
|
摘要:
Web 框架性能排行榜,cakePHP 表现最差 http://www.oschina.net/news/39118/php-framework-benchmarks 阅读全文
posted @ 2013-03-31 23:16
lexus
阅读(303)
评论(0)
推荐(0)
摘要:
CodeLite 5.1 发布,C++ 集成开发环境 http://www.oschina.net/news/39133/codelite-ide-5-1 阅读全文
posted @ 2013-03-31 23:13
lexus
阅读(224)
评论(0)
推荐(0)
摘要:
HTTP/1.1 demosDISCLAIMER: Jigsaw tries to implement all features of HTTP/1.1, it has not however reached a Refernce Implementation status of any sort with regard to HTTP/1.1. This "test suite" has bee... 阅读全文
posted @ 2013-03-31 16:06
lexus
阅读(168)
评论(0)
推荐(0)
摘要:
How to handle boost::iostreams::gzip_dec - C++ ForumHow to handle boost::iostreams::gzip_decompressor() exceptions? 阅读全文
posted @ 2013-03-31 15:30
lexus
阅读(277)
评论(0)
推荐(0)
摘要:
Gzip FiltersExamplesThe following code decompresses data from a file and writes it to standard output.#include <fstream>
#include <iostream>
#include <boost/iostreams/filtering_streambuf.hpp>
#include... 阅读全文
posted @ 2013-03-31 15:28
lexus
阅读(235)
评论(0)
推荐(0)
摘要:
Frequently Asked Questions about zlib Is zlib thread-safe?Yes. However any library routines that zlib uses and any application- provided memory allocation routines must also be thread-safe. zlib's... 阅读全文
posted @ 2013-03-31 15:24
lexus
阅读(303)
评论(0)
推荐(0)
摘要:
VC知识库文章-《C++字符串完全指引之一,》概要:"毫无疑问,我们都看到过像 TCHAR, std::string, BSTR 等各种各样的字符串类型,还有那些以 _tcs 开头的奇怪的宏。你也许正在盯着显示器发愁。本指引将总结引进各种字符类型的目的,展示一些简单的用法,并告诉您在必要时,如何实现各种字符串类型之间的转换。"C++字符串完全指引之一 阅读全文
posted @ 2013-03-31 15:20
lexus
阅读(194)
评论(0)
推荐(0)
摘要:
gzip - Wikipedia, the free encyclopediagzip From Wikipedia, the free encyclopedia Jump to: navigation, search GNU Gzip Developer(s)GNU ProjectStable release1.5 (June17,2012; 9 months ago(20... 阅读全文
posted @ 2013-03-31 15:01
lexus
阅读(249)
评论(0)
推荐(0)
摘要:
tcpip数据包编码解析(chunk and gzip)_space of Jialy_百度空间// 使用zlib库的代码#include "zlib/zlib.h"void uncompresstorrent(char *src, char *dst){ gzFile *gzfp=gzopen(src,"rb"); FILE *fp=fopen(dst,"wb"); char in[CHU... 阅读全文
posted @ 2013-03-31 14:56
lexus
阅读(295)
评论(0)
推荐(0)
摘要:
使用boost::iostreams库压缩和解压数据 - 伯诚的Blog - 博客频道 - CSDN.NET使用boost::iostreams库压缩和解压数据 分类: boost 2013-01-06 17:11 92人阅读 评论(0) 收藏 举报boostBoostiostreams今天项目中正好要用到gzip对数据进行压缩,正好查到了boost::iostream... 阅读全文
posted @ 2013-03-31 14:37
lexus
阅读(1396)
评论(0)
推荐(0)
摘要:
Deflate Compression Algorithm Implemented in High Level Language? - Stack OverflowDeflate Compression Algorithm Implemented in High Level Language? 阅读全文
posted @ 2013-03-31 14:32
lexus
阅读(219)
评论(0)
推荐(0)
摘要:
Index of /projects/pyflateIndex of /projects/pyflate Name Last modified Size Description Parent Directory 27-Mar-2009 00:26 - README.... 阅读全文
posted @ 2013-03-31 14:31
lexus
阅读(316)
评论(0)
推荐(0)
摘要:
miniz - Single C source file Deflate/Inflate compression library with zlib-compatible API, ZIP archive reading/writing, PNG writing - Google Project Hostingminiz.c is a lossless, high performance data... 阅读全文
posted @ 2013-03-31 14:08
lexus
阅读(286)
评论(0)
推荐(0)
摘要:
CGZip, a C++ wrapper for gzip methods - CodeProjectCGZip, a C++ wrapper for gzip methodsBy Jonathan de Halleux, 9 Dec 2002 4.45 (28 votes)123454.45/5 - 28 votes3 removedμ 4.35, σa 2.80 [?]Dow... 阅读全文
posted @ 2013-03-31 13:57
lexus
阅读(482)
评论(0)
推荐(0)
摘要:
http://www.gzip.org/algorithm.txt1. Compression algorithm (deflate) The deflation algorithm used by gzip (also zip and zlib) is a variation of LZ77 (Lempel-Ziv 1977, see reference below). It finds du... 阅读全文
posted @ 2013-03-31 13:54
lexus
阅读(579)
评论(0)
推荐(0)
摘要:
gzip压缩算法: gzip 所使用压缩算法的基本原理_凡间_百度空间gzip压缩算法: gzip 所使用压缩算法的基本原理1 gzip 所使用压缩算法的基本原理gzip 对于要压缩的文件,首先使用LZ77算法的一个变种进行压缩,对得到的结果再使用Huffman编码的方法(实际上gzip根据情况,选择使用静态Huffman编码或者动态Huffman编码,详细内容在实现中说明)进行压缩。所以明白了L... 阅读全文
posted @ 2013-03-31 13:49
lexus
阅读(610)
评论(0)
推荐(0)
摘要:
gzip 与 deflate :gzip算法原理深入分析 -gzip 与 deflate :gzip算法原理深入分析 [复制链接] verohan verohan 当前离线Q豆22 Q币0 在线时间1 小时积分35精华1阅读权限150注册时间2011-4-22最后登录2011-6-16帖子7 窥视卡 雷达卡4主题 1听众 35积分官方团队Q豆22 Q币0 注册时间2011-4-... 阅读全文
posted @ 2013-03-31 13:41
lexus
阅读(2361)
评论(0)
推荐(0)
摘要:
自己动手写web服务器四(web服务器是如何通过压缩数据,web服务器的gzip模块的实现) - 任天胜的个人空间 - 开源中国社区自己动手写web服务器四(web服务器是如何通过压缩数据,web服务器的gzip模块的实现) 阅读全文
posted @ 2013-03-31 13:32
lexus
阅读(170)
评论(0)
推荐(0)
摘要:
Decompressing a GZip Stream with Zlib Decompressing a GZip Stream with Zlib Contents Introduction Download Source Related Links Introduction This C++ program reads a file named input.txt.gz into memor... 阅读全文
posted @ 2013-03-31 13:22
lexus
阅读(412)
评论(0)
推荐(0)
摘要:
how to decompress gzip stream with zlibhow to decompress gzip stream with zlibI'm posting this in my journal because it trips me up every time I have to do this, and I need something googleable so I c... 阅读全文
posted @ 2013-03-31 13:18
lexus
阅读(450)
评论(0)
推荐(0)
摘要:
Frequently Asked Questions about zlibWell that's nice, but how do I make a gzip file in memory?You can request that deflate write the gzip format instead of the zlib format using deflateInit2(). Y... 阅读全文
posted @ 2013-03-31 13:16
lexus
阅读(353)
评论(0)
推荐(0)
摘要:
gzip 解压_简简单单_百度空间问题: 入问题,问题答案立即呈现在您眼前!gzip格式rfc 1952 http://www.ietf.org/rfc/rfc1952.txtdeflate格式rfc 1951 http://www.ietf.org/rfc/rfc1951.txtzlib开发库 http://www.zlib.net/manual.html寻找gzip 获取一个网页数据返回的编码... 阅读全文
posted @ 2013-03-31 13:14
lexus
阅读(293)
评论(0)
推荐(0)
摘要:
Zlib与GZip - woaidongmao - C++博客Zlib与GZip zlib是一个通用的压缩开源库,提供了在内存中压缩和解压的函数,包括对解压后数据的校验。目前版本的zlib只支持deflate方法,但是其它的方法将会被添加进来并且拥有同样的接口。—— zlib manaul deflate算法在rfc1951中有详细的说明。 zlib同时又是一种数据格式,使用zlib库压缩后的数据... 阅读全文
posted @ 2013-03-31 13:10
lexus
阅读(764)
评论(0)
推荐(0)
摘要:
zlib库解压http报文中的gzip数据_bluemonster_新浪博客zlib库解压http报文中的gzip数据[此博文包含图片] (2010-09-02 11:27:20)转载▼标签:zlibhttpgzip解压it 分类: 实验室抓HTTP包的时候发现很多网站的响应报文是gzip压缩后的数据,存放在一个或多个chunk里面(参见HTTP响应报文中的chunked)。这些gzip数据是不可... 阅读全文
posted @ 2013-03-31 13:09
lexus
阅读(598)
评论(0)
推荐(0)
摘要:
Frequently Asked Questions about zlibWhat's the difference between the "gzip" and "deflate" HTTP 1.1 encodings?"gzip" is the gzip format, and "deflate" is the zlib format. They should probably hav... 阅读全文
posted @ 2013-03-31 13:03
lexus
阅读(215)
评论(0)
推荐(0)
摘要:
Frequently Asked Questions about zlibWhat's the difference between the "gzip" and "deflate" HTTP 1.1 encodings? 阅读全文
posted @ 2013-03-31 13:01
lexus
阅读(140)
评论(0)
推荐(0)
摘要:
C语言抓http gzip包并解压 失败 - C/C++ - ChinaUnix.net -原帖由 tedli 于 2007-8-7 16:41 发表 我加了一小段程序测试是不是chunked传输,但是没有反应,不知道是不是写错了?: 即全程序如下: 你的程序错误的地方目前看来还是比较多的。 while(1) { i = read(sockfd,strResponse + temp... 阅读全文
posted @ 2013-03-31 12:12
lexus
阅读(244)
评论(0)
推荐(0)
摘要:
C语言抓http gzip包并解压 失败 - C/C++ - ChinaUnix.net -gzip格式rfc 1952 http://www.ietf.org/rfc/rfc1952.txt deflate格式rfc 1951 http://www.ietf.org/rfc/rfc1951.txt zlib开发库 http://www.zlib.net/manual.html 阅读全文
posted @ 2013-03-31 12:11
lexus
阅读(302)
评论(0)
推荐(0)
摘要:
tcpip数据包编码解析(chunk and gzip)_space of Jialy_百度空间tcpip数据包编码解析(chunk and gzip)在提取出http报文(Message)里的Message-body数据以后,接下来就是要对这个部分数据进行处理了。我的方法是先将这些数据保存成文件,然后再来好好处理它们。http传输的对象数据大部分都是经过压缩传输的,所以我们得到的数据并不是直接的... 阅读全文
posted @ 2013-03-31 12:09
lexus
阅读(571)
评论(0)
推荐(0)
摘要:
Difference Between ZIP and GZIP | Difference Between | ZIP vs GZIP Difference Between ZIP and GZIP • Categorized under Protocols & Formats,Software,Technology | Difference Between ZIP and GZIP winzip_... 阅读全文
posted @ 2013-03-31 12:07
lexus
阅读(269)
评论(0)
推荐(0)
摘要:
Reading socket is slow - Cwhile ((return_count = socket_read(socket_number, &receive_str[i], 5120)) > 0) This will loop until the server closes the connection, which is exactly why it's taking your 3... 阅读全文
posted @ 2013-03-31 11:35
lexus
阅读(282)
评论(0)
推荐(0)
摘要:
关于HTTP keep-alive的实验 - 黄亿华的个人页面 - 开源中国社区 关于HTTP keep-alive的实验 2人收藏此文章, 我要收藏 发表于6个月前(2012-09-24 11:25) , 已有514次阅读 ,共1个评论 前面一篇文章提到,HTTP1.1中持久连接已经是默认配置,除非设置Connection为close,否则默认都会进行持久连接。但是我们知道事实标准跟教科书还是可... 阅读全文
posted @ 2013-03-31 09:43
lexus
阅读(376)
评论(0)
推荐(0)
摘要:
c - What is the Difference Between read() and recv() , and Between send() and write()? - Stack Overflow 25 down vote favorite4what is the difference between read() and recv() , and between send() and ... 阅读全文
posted @ 2013-03-31 09:39
lexus
阅读(172)
评论(0)
推荐(0)
摘要:
HTTP Keep-Alive详解 - IT心雪的日志 - 网易博客HTTP Keep-Alive详解 2011-05-12 17:05:01|分类: 技术探讨 |标签:http协议 |字号大中小订阅原文连接:http://www.io.com/~maus/HttpKeepAlive.html译者:IT心雪HTTP Keep AliveHTTP Keep-Alive 很大程序上被误解了,下面介绍... 阅读全文
posted @ 2013-03-31 09:12
lexus
阅读(263)
评论(0)
推荐(0)
|