From a9df8c1d53db118982b38cdefc8936ae5e11a839 Mon Sep 17 00:00:00 2001 From: Alexandre Costa Date: Wed, 12 Jun 2024 15:10:33 -0700 Subject: [PATCH] Add Why not Redix session --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b6b0e77..f1f6498 100644 --- a/README.md +++ b/README.md @@ -81,3 +81,8 @@ to how [`:telemetry`](https://hexdocs.pm/telemetry/readme.html) attaches handler We sacrificed flexibility on client process architecture, for a simpler mental model. If you need to handle message passing or a pool of processes, for example to handle heavier loads, use [`eredis`](https://hexdocs.pm/eredis/) directly. + +### Why not use [`Redix`](https://hexdocs.pm/redix/Redix.html)? + +Because it doesn't support Redis Cluster. Since our project already depends on +`eredis_cluster` (thus also depends on `eredis`), we wanted to stick with it.