I have a page with a lot of entries fields. They are awesome but that leads also to a LOT of db requests.
Aside from caching are there some best practices to lower db requests on entries fields?
For example my whole navigation is built with entries fields:
{% for entry in globalsNavi.businessSorter %}
<a href="{{ entry.url }}">{{ entry.title }}</a>
{% endfor %}
Would it make any difference if I grabbed only url and title in this example since there are a lot more fields available. And if it would make a difference how would I have to write this?
Something like:
{% for entry in globalsNavi.businessSorter( entry.title, entry.url ) %}