[Django]-Using `defer` or `only` on ForeignKey

0👍

We had similar issue, but we moved to another solution – cached URL in memcache/state cache or precalculated in model field.

We tested out that reverse of URL, which models.permalink does, is lowering performance.

Leave a comment