diff --git a/tech-list/modules/ROOT/pages/index.adoc b/tech-list/modules/ROOT/pages/index.adoc index b96eaed..34f036f 100644 --- a/tech-list/modules/ROOT/pages/index.adoc +++ b/tech-list/modules/ROOT/pages/index.adoc @@ -91,18 +91,19 @@ TIP: redis video::G1rOthIU-uo[youtube, start=0] **** +*etcd vs. Redis* - Like etcd, Redis is an open source tool, but their basic functionalities are different. - -etcd vs. Redis - +Like etcd, Redis is an open source tool, but their basic functionalities are different. [cols="1,1"] |=== -|etcd|Redis +|Redis|etcd | Redis is an in-memory data store and can function as a database, cache, or message broker. Redis supports a wider variety of data types and structures than etcd and has much faster read/write performance. -| But etcd has superior fault tolerance, stronger failover and continuous data availability capabilities, and, most importantly, etcd persists all stored data to disk, essentially sacrificing speed for greater reliability and guaranteed consistency. For these reasons, Redis is better suited for serving as a distributed memory caching system than for storing and distributed system configuration information. +| etcd has superior fault tolerance, stronger failover and continuous data availability capabilities. + +|Redis is better suited for serving as a distributed memory caching system than for storing and distributed system configuration information. +|etcd persists all stored data to disk. |===