摘要:
Web 框架性能排行榜,cakePHP 表现最差 http://www.oschina.net/news/39118/php-framework-benchmarks 阅读全文
posted @ 2013-03-31 23:16
lexus
阅读(302)
评论(0)
推荐(0)
|
摘要:
Web 框架性能排行榜,cakePHP 表现最差 http://www.oschina.net/news/39118/php-framework-benchmarks 阅读全文
posted @ 2013-03-31 23:16
lexus
阅读(302)
评论(0)
推荐(0)
摘要:
CodeLite 5.1 发布,C++ 集成开发环境 http://www.oschina.net/news/39133/codelite-ide-5-1 阅读全文
posted @ 2013-03-31 23:13
lexus
阅读(220)
评论(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
阅读(167)
评论(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
阅读(276)
评论(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
阅读(233)
评论(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
阅读(302)
评论(0)
推荐(0)
摘要:
VC知识库文章-《C++字符串完全指引之一,》概要:"毫无疑问,我们都看到过像 TCHAR, std::string, BSTR 等各种各样的字符串类型,还有那些以 _tcs 开头的奇怪的宏。你也许正在盯着显示器发愁。本指引将总结引进各种字符类型的目的,展示一些简单的用法,并告诉您在必要时,如何实现各种字符串类型之间的转换。"C++字符串完全指引之一 阅读全文
posted @ 2013-03-31 15:20
lexus
阅读(193)
评论(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
阅读(243)
评论(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
阅读(293)
评论(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
阅读(1389)
评论(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
阅读(216)
评论(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
阅读(315)
评论(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
阅读(281)
评论(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
阅读(481)
评论(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
阅读(552)
评论(0)
推荐(0)
摘要:
gzip压缩算法: gzip 所使用压缩算法的基本原理_凡间_百度空间gzip压缩算法: gzip 所使用压缩算法的基本原理1 gzip 所使用压缩算法的基本原理gzip 对于要压缩的文件,首先使用LZ77算法的一个变种进行压缩,对得到的结果再使用Huffman编码的方法(实际上gzip根据情况,选择使用静态Huffman编码或者动态Huffman编码,详细内容在实现中说明)进行压缩。所以明白了L... 阅读全文
posted @ 2013-03-31 13:49
lexus
阅读(606)
评论(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
阅读(2358)
评论(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
阅读(410)
评论(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
阅读(445)
评论(0)
推荐(0)
|