From 5f9d56fc8f70353ddac9e34d20cf3f50d62b9fb4 Mon Sep 17 00:00:00 2001 From: zeus Date: Mon, 6 Dec 2021 22:51:51 +0200 Subject: [PATCH] edit resolv --- tech-list/modules/ROOT/pages/index.adoc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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. |===