PHP is much better than you think....

PHP is much better than you think....

It’s a popular question. Why indeed should one pick PHP over one of the alternatives?

Advantages:

  • Virtually infinite scalability

    If your site gets a peek of requests, in theory AppEngine will handle the load. In a regular PHP setup you would need to take care of adding more servers and distribute the requests between them.

  • Automated backups

    Your application and database data are backed by the AppEngine itself. You can make it take a backup on demand or even schedule it.

  • Distributed sessions

    AppEngine emulates a memcached server, so you can store and retrieve data that will be available to all scripts of your application regardless if they are running on the same machine or not.

    This is useful for instance to store and retrieve session data. This is better than the default session storage that PHP uses which is based in local files.

  • Task queues

    AppEngine provides access to a queue that you can use to dynamically defer the execution of a script to a background process. A class is provided to make it easy to queue the execution of background PHP scripts.

    Your application can also schedule tasks to be executed regularly like you would do configuring a crontab file.

To view or add a comment, sign in

More articles by Ank B.

  • Booming OTT in India : Catching the Eyes of Biggies

    There's been a proliferation of OTT (over-the-top) industry for a few years now- leading by global leaders like Netflix…

  • Xamarin - Answer to your business growth

    Business is evolving and now your business needs a versatile application especially on the mobile platform. In fact…

  • Reasons behind Outsourcing to India

    India is the largest technical & professional talent pool in the world  Indian universities and colleges produce 3.1…

    8 Comments
  • Objective C or Swift? Make your choice now..

    Well, we all have been working with objective C since it's introduces and we all like it but to be brutally honest it's…

    2 Comments
  • Magento 1 or Magento 2- Do you need to upgrade your Online Store now?

    Magento is the most popular open source platform. Releasing from 2008, Magento 1 provides many versions that serve…

    3 Comments
  • PHP or ASP.NET: What we prefer?

    First off, I think it is very important to know for those who want to learn any of the language that PHP is a…

    7 Comments
  • Here's Why Your Business Needs a Mobile App

    Smartphone’s are the new buzzword both in the personal life as well as the professional domain. Each of these different…

    2 Comments
  • The Benefits of Outsourcing IT services

    OUTSOURCING is a latest buzzword these days. It is not only about saving money and reducing work pressure, it's…

    2 Comments
  • Benefits of using WordPress!!

    WordPress used to be the most popular blogging software on the market. But, over the last few years, WordPress has also…

    1 Comment
  • Let's secure your website..

    You may not think your site has anything worth being hacked for, but websites are compromised all the time. The…

Insights from the community

Others also viewed

Explore topics