Learn from Memcached’s Success

WBOY
풀어 주다: 2016-06-07 16:25:57
원래의
901명이 탐색했습니다.

Memcached becomes more and more popular nowadays. It is widely used by many heavy loaded sites. Why does it succeed? Well, of course the first and the most important reason is that it meets the need for speed of the web 2.0 sites, by cachi

Memcached becomes more and more popular nowadays. It is widely used by many heavy loaded sites. Why does it succeed?

Well, of course the first and the most important reason is that it meets the need for speed of the web 2.0 sites, by caching data and objects in memory. However, from the point of view of a server developer, what I want to emphasize is that it is the simplicity of memcached’s protocol design makes it more successful. Take a look at memcached’s protocol:

  • storage: ("set", "add", "replace", "append", "prepend", "cas")
    [noreply]rn
    cas [noreply]rn
    reply: ("ERRORrn", "CLIENT_ERROR rn", "SERVER_ERROR rn",
    "STOREDrn", "NOT_FOUNDrn", "EXISTSrn", "NOT_FOUNDrn")
  • retrieval: ("get", "gets")
    get rn
    gets rn
    reply: ("ENDrn",
    "VALUE [ ]rn rn")
  • deletion:
    delete [
  • increment/decrement: ("incr", "decr")
    incr [noreply]rn
    decr [noreply]rn
    reply: ("NOT_FOUNDrn",
    " rn")
  • statistics: ("stat")
    statsrn
    stats rn
    reply: ("STAT rn",
    "STAT items: : rn"
    "ENDrn")
  • other:
    flush_all
    reply: ("OKrn")
    versionrn
    reply: ("VERSION rn")
    verbosity
    reply: ("OKrn")
    quit
  • With the textual protocol as shown above, memcache can be easily supported and implemented in various programming languages. No wonder dozens of different memcache clients appear. And then it consequently boosts memcached’s use. Simple thing usually will withstand the test of time. The old simple textual protocols, e.g., HTTP, FTP, SMTP and POP3 are still in use on the modern Internet. Not only because textual protocols can be easily parsed and extended, but also they are convenient for human being to read and debug. This is where the UNIX philosophy shines.

    In conclusion, always prefer textual protocol when designing your own application. It would turn out to be really a wise decision.

    Learn from Memcached’s Success
    관련 라벨:
    원천:php.cn
    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿
    회사 소개 부인 성명 Sitemap
    PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!