It doesn't look like your site uses Django cache ?
This can give a significant performance boost - I would think transcript queries would have power law distributions (everyone working on same genes etc) and is very easy to do:
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.redis.RedisCache",
"LOCATION": "redis://127.0.0.1:6379",
}
}
It doesn't look like your site uses Django cache ?
This can give a significant performance boost - I would think transcript queries would have power law distributions (everyone working on same genes etc) and is very easy to do: