search
HomeBackend DevelopmentPHP TutorialThe two pecl libraries memcache and memcached on php_PHP tutorial

I tried to use memcache before, but later I found that memcached supports the setMulti method, and I am going to switch to using the memcached library.

(I tried it. In fact, memcache has never supported multi-value sets, but it is not yet available in the documentation. From the changelog, it seems that it has been supported since version 3.0. The stable version may not have this feature.)

As for efficiency, it’s not clear how big the difference will be.

There is an article here that also says that memcached is based on libmemcached and may be better.

Finally, the php extension based on libmemached is released in pecl.

So, there are now two memcache clients on pecl. One is memcache developed entirely within the PHP framework, and the other is memecached using libmemcached.

As for functions, I have not seen libmemcached, but in theory, libmemcached, which is already very popular in other languages, should have more complete functions. As for program performance (memory and CPU usage), it’s hard to say. Although pecl::memcache is implemented natively, pecl::memached using libmemcached only supports OO interfaces, while pecl::memcache supports both OO and non-OO interfaces. The coexistence of sockets weighs it down.

Actually, these are not the most important. An obvious advantage of using libmemcached is that as the memcached server improves in the future, this lib will definitely follow suit soon. However, pecl::memcache may not be able to follow up on time.

pecl::memcached, another very commendable thing is that the flag is not set during operation. Instead, there is a unified setOption(). For this method, it is very worthwhile to switch from pecl::memcache to pecl::memcached. The specific interface can be found here: http://cvs.php.net/viewvc.cgi/pecl/memcached/memcached-api.php?view=markup

I mentioned in pecl-dev@ whether it can be made into a driver-based architecture. Like current MySQL, you can choose to use mysqlnd or libmysql as the underlying engine. But after thinking about it, I actually don't really support using such an architecture for memcached. It is different from MySQL.

Mysqlnd is developed as an engine rather than a new API, which allows a large number of applications to use the new engine without modifying database operations. If mysqlnd is a new extension, it will face a very difficult choice if it wants to be compatible with previous programs. Because so far, there are three official MySQL class sets that use libmysql and have different external interfaces. Mysqlnd is compatible with mysql, but it is not compatible with mysqli or pdo. Of course, for programs that use their own abstract database classes, this can be achieved by rewriting the class or changing the driver (php level) to achieve compatibility. But think about it, even if you use abstract libraries, there are so many database abstract libraries in the world. If you want everyone to be able to use nd, how many libraries must be modified and how many drivers must be added.

The situation with memcached is much simpler. Currently, the only one that has a closer relationship with the official website is pecl::memcache, and the interfaces are basically based on the memcached protocol, which is almost the same as libmemcache. They can actually be regarded as different drivers in an abstract class. So although there are two different sets of clients, there is almost no need to make any changes when replacing them. You only need to change the place where the class is initialized, and remove the flags of set/get and other methods, unless you use non-OO interface.

In addition, mysql is more complex than memcache in communication and data acquisition. nd can do some things that libmysql cannot do. For example, the buffer can be stored directly using the HashTable and zval inside PHP; for example, some structures that are persistent links can be cached more. (These are just my guesses, I have not read the code of mysqlnd)

Memcached manual:

http://cn.php.net/manual/en/book.memcached.php

Memcache manual:

http://cn.php.net/manual/en/book.memcache.php

Memcached protocol in Chinese and English

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321430.htmlTechArticleI tried to use memcache before, but later found that memcached supports the setMulti method, and I am planning to switch to using the memcached library. (I tried it. In fact, memcache never supports multi-value sets, but the documentation still...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software