From d5dc9efe2ff73a78d1c54de2866415ebf6c45fb6 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Wed, 6 Dec 2023 02:46:20 -0500 Subject: [PATCH] enable `tcp_nodelay` for Redis for faster caching --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 70ce16083..dffa49114 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -163,7 +163,7 @@ rand = "0.8" rayon = "1.8" redis = { version = "0.24", features = [ "ahash", - # "tcp_nodelay", // TODO: enable when this feature is available again + "tcp_nodelay", ], default-features = false, optional = true } regex = "1" reqwest = { version = "0.11", features = [