[Django]-Django MemcacheUnexpectedCloseError and [WinError 10061] No connection could be made because the target machine actively refused it

6👍

  1. You’ve configured your cache backend to use a Memcached server at 127.0.0.1:8000. That’s likely a misconfiguration, since your Django development server would run at 127.0.0.1:8000 by default. The default port for Memcached is 11211 – you might want 127.0.0.1:11211.
  2. Have you downloaded Memcached and started it? Are you sure there’s a Memcached instance listening?
👤AKX

Leave a comment