zoukankan      html  css  js  c++  java
  • Difference Between Mod_Python & Mod_Wsgi | eHow

    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

  • 相关阅读:
    单例设计模式
    MySQL数据类型
    MySQL创建、修改、删除数据库
    HTTP请求与响应
    netcore在CentOS7 下使用处理图片的问题
    SQL删除重复数据
    不同浏览器对cookie大小与个数的限制
    asp.net实现SQL2005的通知数据缓存
    MS SQL 设置自增长字段默认值
    MS SQL 批量操作
  • 原文地址:https://www.cnblogs.com/lexus/p/3728720.html
Copyright © 2011-2022 走看看