What is Zend Server for?

8,448

Solution 1

It's a PHP stack, maintained by Zend instead of by your distribution's maintainers. You run it with Apache and it replaces your regular PHP and PHP extensions. On Windows and Mac it also includes Apache and MySQL if I remember correctly.

There are two editions,the free 'community edition' and a commercial edition that is just called Zend Server.

Both come with a GUI for easier management of settings, such as the php.ini settings with additional tooltips and help, or enabling/disabling extensions or viewing logfiles.

The free version includes the following extensions:

  • Zend Optimizer+ (a good PHP optimizer and bytecode cache),
  • the Zend Data Cache (an set of API functions to cache data or output in memory),
  • the Zend Debugger (a very useful remote debugger and profiler that you control from Zend Studio or Eclipse PDT),
  • Zend Guard Loader (enables loading of encrypted PHP files) and
  • Zend Java Bridge (allows you to use Java classes inside PHP code).

The commercial version adds:

  • Job Queue (API and GUI to offload execution of long-running PHP scripts; enhanced alternative for cronjobs),
  • Code Tracing (root-cause analyses and recording of application execution, manually or triggered by conditions),
  • Monitoring (reports and logs application problems and allows replay in Zend Studio),
  • Page Caching (cache output based on various rules),
  • Download Server (offload transfer of large files so your webserver doesn't have to deal with them).

Compare the versions here: http://www.zend.com/en/products/server/editions

At work we're using the commercial Zend Server on several webservers and while it's not cheap we feel it's worth it (make sure you talk down the price though). For non-commercial and personal use the community edition is a good choice. The Debugger is excellent, as well as the Optimizer. Also, the ease of installation and configuration across different linux distributions is nice to have.

Hope I didn't sound to much like a salesman, but I'm quite pleased with the current Zend Server 5.

Solution 2

It has Apache included and if wanted you can integrate it with IIS. In short: it's a(n overpriced) PHP application server.

Share:
8,448

Related videos on Youtube

JasonDavis
Author by

JasonDavis

PHP/MySQL is my flavor of choice however more recently JavaScript is really becoming something I enjoy developing with! Writing code since 2000' Currently working heavily with SugarCRM + Launching my Web Dev company ApolloWebStudio.com "Premature optimization is not the root of all evil, lack of proper planning is the root of all evil." Twitter: @JasonDavisFL Work: Apollo Web Studio - https://www.apollowebstudio.com Some of my Web Dev skills, self rated... +------------+--------+------+--------------+ | Skill | Expert | Good | Intermediate | +------------+--------+------+--------------+ | PHP | X | | | +------------+--------+------+--------------+ | MySQL | X | | | +------------+--------+------+--------------+ | Javascript | X | | +------------+--------+------+--------------+ | jQuery | X | | +------------+--------+------+--------------+ | CSS+CSS3 | X | | +------------+--------+------+--------------+ | HTML+HTML5 | X | | | +------------+--------+------+--------------+ | Photoshop | | X | | +------------+--------+------+--------------+ | Web Dev | X | | | +------------+--------+------+--------------+ | SugarCRM | X | | | +------------+--------+------+--------------+ | Magento | | X | | +------------+--------+------+--------------+ | WordPress | X | | | +------------+--------+------+--------------+ | SEO | X | | | +------------+--------+------+--------------+ | Marketing | X | | | +------------+--------+------+--------------+ |Social Media| X | | | +------------+--------+------+--------------+

Updated on September 17, 2022

Comments

  • JasonDavis
    JasonDavis over 1 year

    I was just looking at Zend Server I am a little confused, is it something you run on Apache or something you run INSTEAD of Apache for using PHP?

  • Atulmaharaj
    Atulmaharaj about 9 years
    A followup to my old answer: We're no longer using Zend Server. We found the rising cost as well as the yearly haggle about price annoying. Also, as we moved to more horizontal scaling it clashed with the host-based pricing model of ZS. We've found OSS tools like Varnish, Opcache, Xdebug, Memcached, Logstash more versatile and easier to maintain and automate (e.g. with Puppet). In short, our move to the cloud turned Zend Server into an obstacle rather than an asset.