From 31b481d1ff43faad8c95daff31879abefdd4b3f6 Mon Sep 17 00:00:00 2001 From: SkywalkerSpace Date: Mon, 1 Dec 2025 16:27:21 +0800 Subject: [PATCH] update Setup Memory Cache --- manual/setup_binary/installation.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/manual/setup_binary/installation.md b/manual/setup_binary/installation.md index 2fc2ac39..f4972475 100644 --- a/manual/setup_binary/installation.md +++ b/manual/setup_binary/installation.md @@ -426,6 +426,9 @@ Memory cache is mandatory for pro edition. You may use Memcached or Reids as cac ``` # on Debian/Ubuntu 18.04+ apt-get install memcached libmemcached-dev -y + + # activate the venv + source python-venv/bin/activate pip3 install --timeout=3600 pylibmc django-pylibmc systemctl enable --now memcached @@ -452,6 +455,9 @@ Memory cache is mandatory for pro edition. You may use Memcached or Reids as cac ``` # on Debian/Ubuntu 18.04+ apt-get install -y redis-server libhiredis-dev + + # activate the venv + source python-venv/bin/activate pip3 install redis django-redis systemctl enable --now redis-server