From fe6b97b2ba43f68e8ce102603bdc9c46701d110a Mon Sep 17 00:00:00 2001
From: Tanner Prestegard <tanner.prestegard@ligo.org>
Date: Tue, 12 Mar 2019 11:31:20 -0500
Subject: [PATCH] Add clarifying comment on caches to settings

---
 config/settings/base.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/config/settings/base.py b/config/settings/base.py
index 4f7fc80a1..edf198be8 100644
--- a/config/settings/base.py
+++ b/config/settings/base.py
@@ -239,6 +239,7 @@ CACHES = {
         'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
         'LOCATION': '127.0.0.1:11211',
     },
+    # For API throttles
     'throttles': {
         'BACKEND': 'django.core.cache.backends.db.DatabaseCache',
         'LOCATION': 'api_throttle_cache', # Table name
-- 
GitLab