Difference Between Mod_Python & Mod_Wsgi | eHow

    x
    YES
    NO
    Why not?

    Thanks for helping us to make eHow better for everyone.

        eHow
        Computers
        Computer Networking
        Internet Networking
        Difference Between Mod_Python & Mod_Wsgi

    Difference Between Mod_Python & Mod_Wsgi
    By Paul Argodale, eHow Contributor
    X
    Paul Argodale

    Paul Argodale has written for the "Village Voice" in New York City, as well as several specialized academic journals. He holds a Master of Arts in applied linguistics and a Bachelor of Arts in mathematics and philosophy.

        Share
        Print this article

    Difference Between Mod_Python & Mod_Wsgi thumbnail mod_python and mod_wsgi turn the Apache web server into an application server.

    Web developers have a variety of proprietary and open-source tools available to create the rich experiences of social networking e-commerce, and electronic publishing that we have come to expect. Two open source tools based on the Python programming language are mod_python and python_wsgi. Both can be used to create interactive, database-driven websites, but each offers certain advantages and disadvantages. Have a question? Get an answer from online tech support now!
    Other People Are Reading

        How to Use Python With Mod_Wsgi
        Hammer Strength Close Grip Pull Down Back Exercise

        mod_python

            Developed as a means of improving on the speed of cgi requests, mod_python embeds a Python interpreter within the Apache web server. This creates a more streamlined approach to running server side scripts than the perl-based cgi approach, which required the server to create a new process for each request. It also gave Python programmers access to the internals of Apache, allowing them to take advantage of Apache's logging functions. A set of standard handlers in mod_Python allows the creation of robust web applications.
        mod_wsgi

            Like mod_python, mod_wsgi is also an Apache module. It implements the WSGI specification, a means of standardizing the interfaces between web servers and Python-based web application servers and web frameworks. It can run in embedded mode, similar to mod_python, where the Apache web server interprets Python code directly, without creating the overhead of additional processes. It also offers a second operational mode in which it executes Python code in its own dedicated process

Difference Between Mod_Python & Mod_Wsgi | eHow的更多相关文章

  1. Apache+Mod_Python配置

    我其实不是个适合做编程的人,因为喜欢折腾,不喜欢日复一日的重复同样的事情.感觉挺适合做网管(运维)的. 经常在摆弄一些小众的程序员不怎么会关心的东西,不走寻常路.有时也挺纠结的,折腾这些东西的过程中, ...

  2. 为什么你还在用嵌入式的方式来使用mod_wsgi?

    可能你还不知道你的python 网站是否跑在embedded mod of  mod_wsgi,不管你知不知道请看下去,因为大部分人都是在这个工作模式下运行的.嵌入式顾名思义就是运行在apache的子 ...

  3. Windows下Apache+mod_python+Django配置

    Windows下Apache+mod_python+Django配置 Apache 首先要安装Apache,我安装的版本是2.2.*: Python python肯定是要安装的,我安装的版本是2.5的 ...

  4. mod_wsgi 的两种模式

    mod_wsgi 的两种模式 http://ssmax.net/archives/977.html http://www.cnblogs.com/yuxc/p/3555005.html mod_wsg ...

  5. mod_wsgi的工作模式和配置

    Openstack所有提供API接口的服务都是python web server,而其本身性能很弱,目前已经将它们配置到了apache上.但对于如何设置mod_wsgi的参数,我一直没有好好去阅读其文 ...

  6. linux+apache+mod_python+wechat_sdk搭建微信公共账号服务器

    linux+apache+mod_python+wechat_sdk搭建微信公共账号服务器 转载请注明本文原作者:FignerLiu PRE 最近尝试了下使用python搭建微信公共账号服务器,实现了 ...

  7. Java 堆内存与栈内存异同(Java Heap Memory vs Stack Memory Difference)

    --reference Java Heap Memory vs Stack Memory Difference 在数据结构中,堆和栈可以说是两种最基础的数据结构,而Java中的栈内存空间和堆内存空间有 ...

  8. mac osx 上面部署Django项目 apache+mysql+mod_wsgi

    1.安装Xcode command line tools 首先,编译mysql和Homebrew需要用到Xcode command line tools,所以首先安装command line tool ...

  9. Ubuntu下安装mod_python报错(GIT错误)

    Ubuntu下安装mod_python3.4.1版本报出如下错误: writing byte-compilation script '/tmp/tmpE91VXZ.py' /usr/bin/pytho ...

随机推荐

  1. Spiral Matrix II 解答

    Question Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral or ...

  2. SSH方式登录github出现Permission denied (publickey)

    今天在公司上传了代码,回到家pull,结果竟然出现了“Permission denied (publickey)“这种东西.第一反应是key不对,可是上次明明用key登录过,不可能不对啊,难道是文件被 ...

  3. java与.net比较学习系列(2) 基础语言要素

    这一篇从最基础的开始对比总结,说起基础语言要素,故名思义,就是学习语言的基础,主要内容包括标识符,关键字和注释.我想从以下几点进行总结,有区别的地方有都使用红色粗体字进行了总结. 1,标识符 2,关键 ...

  4. [ES7] Object.observe + Microtasks

    ES6: If you know about the Javascirpt's event loop. You know that any asyns opreations will be throw ...

  5. [Protractor] Protractor Interactive with elementor

    Install: npm install -g elementor Then run: webdriver-manager start Lets say if we want to test 'htt ...

  6. 如何利用 Bootstrap 进行快速 Web 开发

    原文出处: IBM developerworks 了解如何使用 Bootstrap 快速开发网站和 Web 应用程序(包括移动友好型应用程序).Bootstrap 以 LESS 项目为基础,由 Twi ...

  7. 1218.1——OC中的常见关键字及一些基本方法

    OC常见的关键字介绍: @ 看到这个关键字,我们就应该想到,这是Object-C对C语言的扩展,例如@interface XXX. @interface 声明类 @implementation 实现类 ...

  8. javaScript给元素添加多个class

    <html> <head> <style type="text/css"> .div2{ font-size:16px; color:orang ...

  9. Reward HDU

    Reward                                    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32 ...

  10. CI(CodeIgniter)学习第二讲

    一.CI的文件结构: 了解CI的文件结构可以帮助我们快速的对CI框架有一个整体的认识,就好像我们去了一个陌生的城市一样,对你来讲周围的一切都是陌生和未知的,要想快速的了解这座城市,你可以买一张这座城市 ...