SlideShare ist ein Scribd-Unternehmen logo
1 von 30
Downloaden Sie, um offline zu lesen
Give Your Site A Boost
With Memcache


Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Software Architect
          at Schematic
          Atlanta PHP Leader
          Co-author of Zend
          PHP 5 Certification
          Study Guide
          Chatter on #phpc



Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
“A cache is a collection of data duplicating
      original values stored elsewhere or computed
      earlier, where the original data is expensive to
      fetch (owing to longer access time) or to
      compute, compared to the cost of reading the
      cache. In other words, a cache is a temporary
      storage area where frequently accessed data
      can be stored for rapid access.”
      — Wikipedia


Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Why cache?
             You want to reduce the number of
             retrieval queries made to the database
             You want to reduce the number of
             external requests (retrieving data from
             other web services)
             You want to cut down on filesystem
             access



Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Caching options
             Flat file caching
             Caching data in the database
             MySQL 4.x query caching
             Shared memory (APC)
             RAM disk
             memcached



Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
What is memcached?
             Distributed Memory Object Caching
             System
             Caching daemon
             Developed by Danga Interactive for
             LiveJournal.com
             Uses RAM for storage
             Acts as a dictionary of stored data with
             key/value pairs

Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Is memcached fast?
             Stored in memory (RAM), not on disk
             Uses non-blocking network I/O (TCP/IP)
             Uses libevent to scale to any number of
             open connections
             Uses its own slab allocator and hash
             table to ensure virtual memory never gets
             externally fragmented and allocations are
             guaranteed O(1)


Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
General usage
        1. Set up a pool of memcached servers
        2. Assign values to keys that are stored in
           the cluster
        3. The memcache client hashes the key to
           a particular machine in the cluster
        4. Subsequent requests for that key retrieve
           the value from the memcached server on
           which it was stored
        5. Values time out after the specified TTL
Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Memcached principles
             It’s a non-blocking server
             It is not a database
             It does not provide redundancy
             It doesn't handle failover
             It does not provide authentication




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Memcached principles
             Data is not replicated across the cluster
             Works great on a small and local-area
             network
             A single value cannot contain more than
             1MB of data
             Keys are strings limited to 250 characters




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Storing data in the pool
             Advantage is in scalability
             To fully see the advantage, use a “pool”
             memcached itself doesn't know about
             the pool
             The pool is created by and managed
             from the client library




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
www 3
               memcached
                                                           memcached
       www 1




                                           memcached

                                                 www 2




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Deterministic failover
             Memcached does not provide this
             It is up to you to implement it
             If you can’t find the data in memcache,
             eat the look-up cost and retrieve from
             your data source again, storing it back to
             the cache




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
www 3
               memcached
                                                                   memcached
       www 1


                                                                    Data
                                                                inaccessible!



                                           memcached

                                                 www 2
                                                         Recreate data;
                                                         Store back to
                                                          memcache

Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
The memcached protocol API
             Storage commands:
             set, add, replace, append, prepend, cas
             Retrieval command: get, gets
             Deletion command: delete
             Increment/decrement: incr, decr
             Other commands:
             stats, flush_all, version, verbosity,
             quit

Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
$> telnet localhost 11211
   Trying ::1...
   Connected to localhost.
   Escape character is '^]'.
   set foobar 0 0 15
   This is a test.
   STORED
   get foobar
   VALUE foobar 0 15
   This is a test.
   END
   quit
   Connection closed by foreign host.
   $>


Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Setting it up
             http://danga.com/memcached/
             $> ./configure; make; make install
             $> memcached -d -m 2048 -p 11211
             Done!
             Windows port of v1.2.4 at
             http://www.splinedancer.com/memcached-win32/




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Memcached clients
             Perl, Python, Ruby, Java, C#
             C (libmemcached)
             PostgreSQL (access memcached from
             procs and triggers)
             MySQL (adds memcache_engine storage
             engine)
             PHP (pecl/memcache)


Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
pecl/memcache
             The PHP client for connecting to
             memcached and managing a pool of
             memcached servers
             http://pecl.php.net/package/memcache
             $> pecl install memcache
             Stable: 2.2.3
             Beta: 3.0.1



Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Features of pecl/memcache
             memcache.allow_failover
             memcache.hash_strategy
             memcache.hash_function
             memcache.protocol
             memcache.redundancy
             memcache.session_redundancy



Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Key hashing
             Keys longer than 250 characters are
             truncated without warning
             Good practice to hash your key (with
             MD5 or SHA) at the userland level to
             ensure long keys don’t get truncated
             Keys are “global”
             Use something to uniquely identify keys,
             e.g. a method signature or an SQL
             statement

Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Object serialization
             Objects are serialized before being stored
             to memcache:
             get key
             VALUE key 1 59
             O:8:quot;stdClassquot;:2:{s:3:quot;fooquot;;s:3:quot;barquot;;s:3:quot;bazquot;;s:3:quot;quzquot;;}
             END

             Extension unserializes them before
             returning the object
             Only objects that can be serialized safely
             can be stored to memcache, i.e.
             problems with DOM, SimpleXML, etc.
Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Redundancy and failover
             memcache.redundancy &
             memcache.session_redundancy
             Implement redundancy at the userland
             level?
             Again, memcache is not a database




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Extending MemcachePool
             Implement global values vs. page-
             specific values
             Ensure a single instance of the
             MemcachePool object
             Do complex key hashing, if you so
             choose
             Set a default expiration for all your data
             Add all of your servers upon object
             instantiation
Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Database techniques
             Create a wrapper for mysql_query() that
             checks the cache first and returns an
             array of database results
             Extend PDO to store results to the cache
             and get them when you execute a
             statement




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Database techniques
             For large datasets, run a scheduled
             query once an hour and store it to the
             cache
             Please note: memcached can store
             arrays, objects, etc., but it cannot store a
             resource, which some database
             functions (e.g. mysql_query()) return




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
Session storage
             As of 2.1.1, you can set the session save
             handler as “memcache” and all will work
             automagically
             session.save_handler = memcache
             session.save_path = quot;tcp://192.168.1.10:11211,tcp://
             192.168.1.11:11211,tcp://192.168.1.12:11211quot;

             Store sessions to both the database and
             memcache
             Write your own session handler that
             stores to the database and memcache

Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
www 3
               memcached
                                                            memcached
       www 1


                                                            Session
                                                         inaccessible!


    Need to                                memcached
  recreate the
    session!                                     www 2




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
For more information...
             http://danga.com/memcached/
             http://pecl.php.net/package/memcache
             http://www.socialtext.net/memcached/


             My blog: http://benramsey.com/




Give Your Site A Boost With Memcache
Ben Ramsey ■ DC PHP Conference ■ 3 June 2008

Weitere ähnliche Inhalte

Mehr von Ben Ramsey

Grokking the REST Architectural Style
Grokking the REST Architectural StyleGrokking the REST Architectural Style
Grokking the REST Architectural StyleBen Ramsey
 
Making the Most of HTTP In Your Apps
Making the Most of HTTP In Your AppsMaking the Most of HTTP In Your Apps
Making the Most of HTTP In Your AppsBen Ramsey
 
Around the PHP Community
Around the PHP CommunityAround the PHP Community
Around the PHP CommunityBen Ramsey
 
You Look Like You Could Use Some REST!
You Look Like You Could Use Some REST!You Look Like You Could Use Some REST!
You Look Like You Could Use Some REST!Ben Ramsey
 
Distribution and Publication With Atom Web Services
Distribution and Publication With Atom Web ServicesDistribution and Publication With Atom Web Services
Distribution and Publication With Atom Web ServicesBen Ramsey
 
Distribution and Publication With Atom Web Services
Distribution and Publication With Atom Web ServicesDistribution and Publication With Atom Web Services
Distribution and Publication With Atom Web ServicesBen Ramsey
 

Mehr von Ben Ramsey (6)

Grokking the REST Architectural Style
Grokking the REST Architectural StyleGrokking the REST Architectural Style
Grokking the REST Architectural Style
 
Making the Most of HTTP In Your Apps
Making the Most of HTTP In Your AppsMaking the Most of HTTP In Your Apps
Making the Most of HTTP In Your Apps
 
Around the PHP Community
Around the PHP CommunityAround the PHP Community
Around the PHP Community
 
You Look Like You Could Use Some REST!
You Look Like You Could Use Some REST!You Look Like You Could Use Some REST!
You Look Like You Could Use Some REST!
 
Distribution and Publication With Atom Web Services
Distribution and Publication With Atom Web ServicesDistribution and Publication With Atom Web Services
Distribution and Publication With Atom Web Services
 
Distribution and Publication With Atom Web Services
Distribution and Publication With Atom Web ServicesDistribution and Publication With Atom Web Services
Distribution and Publication With Atom Web Services
 

Kürzlich hochgeladen

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 

Kürzlich hochgeladen (20)

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 

Give Your Site A Boost With Memcache

  • 1. Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 2. Software Architect at Schematic Atlanta PHP Leader Co-author of Zend PHP 5 Certification Study Guide Chatter on #phpc Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 3. “A cache is a collection of data duplicating original values stored elsewhere or computed earlier, where the original data is expensive to fetch (owing to longer access time) or to compute, compared to the cost of reading the cache. In other words, a cache is a temporary storage area where frequently accessed data can be stored for rapid access.” — Wikipedia Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 4. Why cache? You want to reduce the number of retrieval queries made to the database You want to reduce the number of external requests (retrieving data from other web services) You want to cut down on filesystem access Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 5. Caching options Flat file caching Caching data in the database MySQL 4.x query caching Shared memory (APC) RAM disk memcached Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 6. What is memcached? Distributed Memory Object Caching System Caching daemon Developed by Danga Interactive for LiveJournal.com Uses RAM for storage Acts as a dictionary of stored data with key/value pairs Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 7. Is memcached fast? Stored in memory (RAM), not on disk Uses non-blocking network I/O (TCP/IP) Uses libevent to scale to any number of open connections Uses its own slab allocator and hash table to ensure virtual memory never gets externally fragmented and allocations are guaranteed O(1) Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 8. General usage 1. Set up a pool of memcached servers 2. Assign values to keys that are stored in the cluster 3. The memcache client hashes the key to a particular machine in the cluster 4. Subsequent requests for that key retrieve the value from the memcached server on which it was stored 5. Values time out after the specified TTL Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 9. Memcached principles It’s a non-blocking server It is not a database It does not provide redundancy It doesn't handle failover It does not provide authentication Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 10. Memcached principles Data is not replicated across the cluster Works great on a small and local-area network A single value cannot contain more than 1MB of data Keys are strings limited to 250 characters Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 11. Storing data in the pool Advantage is in scalability To fully see the advantage, use a “pool” memcached itself doesn't know about the pool The pool is created by and managed from the client library Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 12. www 3 memcached memcached www 1 memcached www 2 Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 13. Deterministic failover Memcached does not provide this It is up to you to implement it If you can’t find the data in memcache, eat the look-up cost and retrieve from your data source again, storing it back to the cache Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 14. www 3 memcached memcached www 1 Data inaccessible! memcached www 2 Recreate data; Store back to memcache Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 15. The memcached protocol API Storage commands: set, add, replace, append, prepend, cas Retrieval command: get, gets Deletion command: delete Increment/decrement: incr, decr Other commands: stats, flush_all, version, verbosity, quit Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 16. $> telnet localhost 11211 Trying ::1... Connected to localhost. Escape character is '^]'. set foobar 0 0 15 This is a test. STORED get foobar VALUE foobar 0 15 This is a test. END quit Connection closed by foreign host. $> Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 17. Setting it up http://danga.com/memcached/ $> ./configure; make; make install $> memcached -d -m 2048 -p 11211 Done! Windows port of v1.2.4 at http://www.splinedancer.com/memcached-win32/ Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 18. Memcached clients Perl, Python, Ruby, Java, C# C (libmemcached) PostgreSQL (access memcached from procs and triggers) MySQL (adds memcache_engine storage engine) PHP (pecl/memcache) Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 19. pecl/memcache The PHP client for connecting to memcached and managing a pool of memcached servers http://pecl.php.net/package/memcache $> pecl install memcache Stable: 2.2.3 Beta: 3.0.1 Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 20. Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 21. Features of pecl/memcache memcache.allow_failover memcache.hash_strategy memcache.hash_function memcache.protocol memcache.redundancy memcache.session_redundancy Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 22. Key hashing Keys longer than 250 characters are truncated without warning Good practice to hash your key (with MD5 or SHA) at the userland level to ensure long keys don’t get truncated Keys are “global” Use something to uniquely identify keys, e.g. a method signature or an SQL statement Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 23. Object serialization Objects are serialized before being stored to memcache: get key VALUE key 1 59 O:8:quot;stdClassquot;:2:{s:3:quot;fooquot;;s:3:quot;barquot;;s:3:quot;bazquot;;s:3:quot;quzquot;;} END Extension unserializes them before returning the object Only objects that can be serialized safely can be stored to memcache, i.e. problems with DOM, SimpleXML, etc. Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 24. Redundancy and failover memcache.redundancy & memcache.session_redundancy Implement redundancy at the userland level? Again, memcache is not a database Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 25. Extending MemcachePool Implement global values vs. page- specific values Ensure a single instance of the MemcachePool object Do complex key hashing, if you so choose Set a default expiration for all your data Add all of your servers upon object instantiation Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 26. Database techniques Create a wrapper for mysql_query() that checks the cache first and returns an array of database results Extend PDO to store results to the cache and get them when you execute a statement Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 27. Database techniques For large datasets, run a scheduled query once an hour and store it to the cache Please note: memcached can store arrays, objects, etc., but it cannot store a resource, which some database functions (e.g. mysql_query()) return Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 28. Session storage As of 2.1.1, you can set the session save handler as “memcache” and all will work automagically session.save_handler = memcache session.save_path = quot;tcp://192.168.1.10:11211,tcp:// 192.168.1.11:11211,tcp://192.168.1.12:11211quot; Store sessions to both the database and memcache Write your own session handler that stores to the database and memcache Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 29. www 3 memcached memcached www 1 Session inaccessible! Need to memcached recreate the session! www 2 Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008
  • 30. For more information... http://danga.com/memcached/ http://pecl.php.net/package/memcache http://www.socialtext.net/memcached/ My blog: http://benramsey.com/ Give Your Site A Boost With Memcache Ben Ramsey ■ DC PHP Conference ■ 3 June 2008