Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6555535
  • 博文数量: 1159
  • 博客积分: 12444
  • 博客等级: 上将
  • 技术积分: 12570
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-13 21:34
文章分类

全部博文(1159)

文章存档

2016年(126)

2015年(350)

2014年(56)

2013年(91)

2012年(182)

2011年(193)

2010年(138)

2009年(23)

分类: C/C++

2015-11-23 07:57:32



fastcgi++: A C++ FastCGI Library

[]

About

The fastcgi++ library started out as a C++ alternative to the official FastCGI developers kit. It is released under the GNU Lesser General Public License. Although the official developers kit provided some degree of C++ interface, it was very limited. The goal of this project was to provide a framework that offered all the facilities that the C++ language has to offer. Over time the scope broadened to the point that it became more than just a simple protocol library, but a platform to develop web application under C++. To the dismay of many, this library has zero support for the old CGI protocol. The consensus was that if one were to be developing web applications under C++, efficient memory management and CPU usage would be a top priority, not CGI compatibility. Effective management of simultaneous requests without the need for multiple threads is something that fastcgi++ does best. Session data is organized into meaningful data types as opposed to a series of text strings. Internationalization and Unicode support is another top priority. The library is templated to allow internal wide character use for efficient text processing while code converting down to utf-8 upon transmission to the client.

Releases

[] [Documentation]
  • Updated boost.m4 macro to lastest version
  • Fixed possible end iterator dereferences
  • IPv6 address parser no longer accepted non hex characters
  • Removed potential for read overflow
  • Http::Environment::requestMethod now initialized
  • Fcgistream::Encoder::m_state is now initialized
[] [Documentation]
  • Uses autotools
  • Has session handling capabilities
  • Has SQL query capabilities
[] [Documentation]
  • Fixed bug in parsing post data
  • Fixed buffer flushing bug
[]
  • Removed dependence on Linux epoll socket polling. Switched to POSIX poll().
  • Code will now compile on older GCC systems.
  • Fixed issue where parameters would not be processed if bunched into a single record as mod_fcgid does.
  • Refined error handling.
  • Implemented an internal UTF-8 code conversion facet to remove dependence on functional UTF-8 locales.
[]

阅读(1066) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~