2016-05-16

Question 8 Practice Final .

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

Brendan Kao, Alvyn Ly, Dennis Simsiman, Aishwarya Soni

<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> Brendan Kao, Alvyn Ly, Dennis Simsiman, Aishwarya Soni
X