热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

LearnfromMemcached’sSuccess

Memcachedbecomesmoreandmorepopularnowadays.Itiswidelyusedbymanyheavyloadedsites.Whydoesitsucceed?Well,ofcoursethefirstandthemostimportantreasonisthatitmeetstheneedforspeedoftheweb2.0sites,bycachi

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 []rnrn")
  • 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.

    推荐阅读
    author-avatar
    昙檀禅潺_162
    这个家伙很懒,什么也没留下!
    PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
    Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有