1.

What Is Built-in Http Server & Internal Engine?

Answer»

CHERRYPY comes with its own web (HTTP) server. That is why CherryPy is self-contained and allows users to RUN a CherryPy application within minutes of getting the library.

The web server acts as the gateway to the application with the help of which all the requests and responses are kept in track.

To start the web server, a user must make the following call −

cherryPy.server.quickstart()

The internal engine of CherryPy is RESPONSIBLE for the following activities −

  • CREATION and management of request and response objects.
  • Controlling and managing the CherryPy process.

CherryPy comes with its own web (HTTP) server. That is why CherryPy is self-contained and allows users to run a CherryPy application within minutes of getting the library.

The web server acts as the gateway to the application with the help of which all the requests and responses are kept in track.

To start the web server, a user must make the following call −

cherryPy.server.quickstart()

The internal engine of CherryPy is responsible for the following activities −



Discussion

No Comment Found