0%

What you need to keep in mind: query responsibly

It is crucial to query the data responsibly, as this will improve performance and speed. Here are some tips:

  • Do not request all the data if you don’t need everything.
  • Optimise query performance by requesting only the necessary data to minimise data transfer and processing overhead:
    • Use filters.
    • Combine different filters together.
    • Include only relevant fields.
  • During query construction, first request a small dataset (3-5 documents) with the solr_request function to ensure it works correctly, and only then request all the data you need with batch_solr_request.
  • Use pagination to avoid overwhelming the system with large data requests.