投稿说明 bitsCN.com > 编程/数据库 > PHP >
Apache2.0a1新特性(英文)
标签:Apache
Core Enhancements:
Unix Threading
On Unix systems with POSIX threads support, Apache can now run in a hybrid multiprocess, multithreaded mode. This should improve scalability.
New Build System
The build system has been rewritten from scratch to be based on autoconf and libtool. This makes Apache's configuration system more similar to that of other packages.
Multiprotocol Support
Apache now has some of the infrastructure in place to support serving multiple protocols. mod_echo has been written as an example.
Better support for non-Unix platforms
Apache 2.0 should be faster and more stable on non-Unix platforms such as BeOS, OS/2, and Windows. With the introduction of platform-specific multiprocessing modules and the Apache Portable Runtime, these platforms can now avoid using POSIX-emulation functions that are sometimes buggy and always hurt performance.
New API
The API for modules has changed significantly for 2.0. Many of the module-ordering problemsfrom 1.3 should be gone. 2.0 does much of this automatically, and module ordering is now done per-hook to allow more flexibility. Also, new calls have been added that should allow
modules to do more without requiring patching of the core Apache server.
推荐阅读
-
本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ...
[详细]
-
1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ...
[详细]
-
本文探讨了如何通过最小生成树(MST)来计算严格次小生成树。在处理过程中,需特别注意所有边权重相等的情况,以避免错误。我们首先构建最小生成树,然后枚举每条非树边,检查其是否能形成更优的次小生成树。 ...
[详细]
-
QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ...
[详细]
-
本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ...
[详细]
-
本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ...
[详细]
-
本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ...
[详细]
-
本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ...
[详细]
-
This guide provides a comprehensive step-by-step approach to successfully installing the MongoDB PHP driver on XAMPP for macOS, ensuring a smooth and efficient setup process. ...
[详细]
-
本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ...
[详细]
-
本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ...
[详细]
-
本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ...
[详细]
-
本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ...
[详细]
-
Tags | 热门标签
RankList | 热门文章
-
1java计算器 图形用户界面 简化版
-
2TCP/IP详解 卷1 第一章概述
-
345请求转发和请求重定向区别
-
4点击linkbutton在新窗口中打开,并传递多个参数如何实现?
-
5实现uboot启动linux的简单方法
-
6第二次团队作业:需求分析
-
7linux6.2网卡驱动加载,RHEL6.2 安装网卡驱动
-
8Android实现彩信附件的添加与删除功能
-
9boot集成的邮箱 spring_spring boot集成mybatis(2) – 使用pagehelper实现分页
-
10手把手教你学会简单的链表相交问题(LeetCode 160 .相交链表)
-
11Java详解剑指offer面试题56数组中数字出现的次数
-
12PDO混合未命名和命名参数 - PDO mixing unnamed and named parameters
-
13MATLAB 串口通信
-
14Java实现PDF转为线性PDF详解
-
15基于php个人博客文献综述,个人博客网站的设计与实现—.NET(开题报告+源代码+论文+文献综述+答辩PPT)...
标签:Apache
Core Enhancements:Unix Threading
On Unix systems with POSIX threads support, Apache can now run in a hybrid multiprocess, multithreaded mode. This should improve scalability.
New Build System
The build system has been rewritten from scratch to be based on autoconf and libtool. This makes Apache's configuration system more similar to that of other packages.
Multiprotocol Support
Apache now has some of the infrastructure in place to support serving multiple protocols. mod_echo has been written as an example.
Better support for non-Unix platforms
Apache 2.0 should be faster and more stable on non-Unix platforms such as BeOS, OS/2, and Windows. With the introduction of platform-specific multiprocessing modules and the Apache Portable Runtime, these platforms can now avoid using POSIX-emulation functions that are sometimes buggy and always hurt performance.
New API
The API for modules has changed significantly for 2.0. Many of the module-ordering problemsfrom 1.3 should be gone. 2.0 does much of this automatically, and module ordering is now done per-hook to allow more flexibility. Also, new calls have been added that should allow
modules to do more without requiring patching of the core Apache server.
推荐阅读
-
本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]本文探讨了如何通过最小生成树(MST)来计算严格次小生成树。在处理过程中,需特别注意所有边权重相等的情况,以避免错误。我们首先构建最小生成树,然后枚举每条非树边,检查其是否能形成更优的次小生成树。 ... [详细]QUIC(Quick UDP Internet Connections)是谷歌开发的一种旨在提高网络性能和安全性的传输层协议。它基于UDP,并结合了TLS级别的安全性,提供了更高效、更可靠的互联网通信方式。 ... [详细]本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]This guide provides a comprehensive step-by-step approach to successfully installing the MongoDB PHP driver on XAMPP for macOS, ensuring a smooth and efficient setup process. ... [详细]本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]Tags | 热门标签RankList | 热门文章
- 1java计算器 图形用户界面 简化版
- 2TCP/IP详解 卷1 第一章概述
- 345请求转发和请求重定向区别
- 4点击linkbutton在新窗口中打开,并传递多个参数如何实现?
- 5实现uboot启动linux的简单方法
- 6第二次团队作业:需求分析
- 7linux6.2网卡驱动加载,RHEL6.2 安装网卡驱动
- 8Android实现彩信附件的添加与删除功能
- 9boot集成的邮箱 spring_spring boot集成mybatis(2) – 使用pagehelper实现分页
- 10手把手教你学会简单的链表相交问题(LeetCode 160 .相交链表)
- 11Java详解剑指offer面试题56数组中数字出现的次数
- 12PDO混合未命名和命名参数 - PDO mixing unnamed and named parameters
- 13MATLAB 串口通信
- 14Java实现PDF转为线性PDF详解
- 15基于php个人博客文献综述,个人博客网站的设计与实现—.NET(开题报告+源代码+论文+文献综述+答辩PPT)...