SlideShare une entreprise Scribd logo
1  sur  30
Télécharger pour lire hors ligne
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

Contenu connexe

Plus de 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
 

Plus de 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
 

Dernier

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 

Dernier (20)

🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

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