17 Dec 2014 Sql Backups vs CSV Backups

Database Backups can take several formats. Backup size, backup time, and restore time will vary for each of these formats. In this post, we will use a 13 GB database with a total of 66 million rows to compare and evaluate the backup and restore time...

Read More

01 Dec 2014 Amazon Elastic Load Balancer

Elastic Load Balancer is a service provided by Amazon Web Services. ELB handles all incoming traffic, distributes all requests across multiple EC2 instances that actually fulfill the requests, fetches the responses, and sends it back to the client. There are many load balancing algorithms supported by...

Read More

30 Oct 2014 Nginx Load Balancing

The general idea behind using a load balancer is that it allows you to distribute the HTTP traffic across many nodes, i.e. Nginx is conncted to multiple backend servers (application servers ). Nginx handles all incoming requests, distributes them across the backend servers that actually...

Read More

22 Oct 2014 Apache or Nginx: The ultimate argument

When it comes to web server applications, there are two particular names that rise strongly; Apache and Nginx. So, what are the differences between these well-known web servers? and which one to pick? Introducing Apache The Apache HTTP Server is the most popular Linux-based web server. It was first...

Read More

19 Oct 2014 POODLE, The Latest SSL Vulnerability

Recently, a vulnerability in the design of SSLv3 was discovered by Google team. POODLE or "Padding Oracle On Downgraded Legacy Encryption" allows a man-in-the-middle attacker to trigger the downgrade to SSLv3, decrypting the HTTP secure connection and extracting important information. The issue was disclosed on Tuesday...

Read More

08 Oct 2014 Nginx FastCGI Caching

One of the main methods of optimization is web caching, which is simply a method to store a copy of the web content to accelerate the serving it to the client. The most famous caching method is setting up a reverse proxy in-front of the web server...

Read More