Skip to content
Snippets Groups Projects
Commit 788f89da authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '117-cache' into 'develop'

Fix #117: Use django-cacheops to cache common ORM requests

Closes #117

See merge request funkwhale/funkwhale!86
parents c70ab72b a448eaaf
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,8 @@ test_api:
DJANGO_ALLOWED_HOSTS: "localhost"
DATABASE_URL: "postgresql://postgres@postgres/postgres"
FUNKWHALE_URL: "https://funkwhale.ci"
CACHEOPS_ENABLED: "false"
before_script:
- cd api
- pip install -r requirements/base.txt
......
......@@ -60,6 +60,7 @@ THIRD_PARTY_APPS = (
'mptt',
'dynamic_preferences',
'django_filters',
'cacheops',
)
......@@ -369,6 +370,15 @@ MUSICBRAINZ_CACHE_DURATION = env.int(
'MUSICBRAINZ_CACHE_DURATION',
default=300
)
CACHEOPS_REDIS = env('CACHE_URL', default=CACHE_DEFAULT)
CACHEOPS_ENABLED = env.bool('CACHEOPS_ENABLED', default=True)
CACHEOPS = {
'music.artist': {'ops': 'all', 'timeout': 60 * 60},
'music.album': {'ops': 'all', 'timeout': 60 * 60},
'music.track': {'ops': 'all', 'timeout': 60 * 60},
'music.trackfile': {'ops': 'all', 'timeout': 60 * 60},
'taggit.tag': {'ops': 'all', 'timeout': 60 * 60},
}
# Custom Admin URL, use {% url 'admin:index' %}
ADMIN_URL = env('DJANGO_ADMIN_URL', default='^api/admin/')
......
......@@ -58,3 +58,4 @@ python-magic==0.4.15
ffmpeg-python==0.1.10
channels>=2,<2.1
channels_redis>=2.1,<2.2
django-cacheops>=4,<4.1
......@@ -13,5 +13,6 @@ services:
- "DJANGO_ALLOWED_HOSTS=localhost"
- "DATABASE_URL=postgresql://postgres@postgres/postgres"
- "FUNKWHALE_URL=https://funkwhale.test"
- "CACHEOPS_ENABLED=False"
postgres:
image: postgres
Use django-cacheops to cache common ORM requests (#117)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment