redis and memcached - Web Crawler

Creative Commons License Copyright: Attribution, allow others to create paper-based, and must distribute paper (based on the original license agreement with the same license Creative Commons )
First, what memcached and redis that?

Is a software accesses data in memory, the main scenarios: page caching.

Second, the difference between memcached and redis
  1. Type
    memcached: Type Single
    redis: There are five types, string, list, hash, set, order set ()
  2. Persistent
    memcached: Power off Memory emptied, it can support multi-core
    redis: support persistence, reduced performance; only supports single-core
  3. Multi-core
    memcached: support for multi-core
    redis: only supports single-core

Guess you like

Origin blog.csdn.net/Thanlon/article/details/93158351