Guest User

Untitled

a guest
Feb 20th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. # Connect to all the memcached servers
  4. $memcache = new Memcache;
  5. $servers = array(
  6. "riesling",
  7. "front1",
  8. );
  9.  
  10. foreach($servers as $server) {
  11. $memcache->addServer($server, 11211);
  12. }
  13.  
  14. $bytes = file_get_contents("./images/logo_tagmy.com.gif");
  15. for($i=0; $i<10000000; $i++) {
  16. $memcache->set($i, $bytes);
  17. }
  18. ?>
Add Comment
Please, Sign In to add comment