Scalability




CS174

Chris Pollett

Nov. 22, 2010

Outline

Scaling a Web-site

Example Web-site Architecture

Organization of a website show squids, http servers, memcached server, databases.

Remarks on Architecture

Content Delivery Networks

Object Relational Mappings

Quiz

Which of the following statements is true?

  1. Click-jacking still works with Javascript disabled.
  2. You cannot say directly in Unicode that text should be right to left.
  3. The xgettext command is used to create a .mo file from a .po file.

Memcached

Running memcached

Demo of connecting to memcached as a human - set

Demo of connecting to memcached as a human - get

Some Remarks on Memcached

Using memcached in PHP

Example Memcache Test

<html>
<head><title>Memcache Test</title></head>
<body>
<h1>Test</h1>
<?php
  $memcache = new Memcache();
  $memcache->addServer("localhost", 11211, true, 1, 1, 5);
  $memcache->set("bob", "value", null, 60);
  echo "<p>".$memcache->get("bob")."</p>";
?>
</body>
</html>