how to increase repose time of graphql query in ruby on rails (ROR)

I have tried with following technique still not able to speed up.

  1. N+1 query problem. : Batch_loading or eager_load concept
  2. Pagination.
  3. caching.
  4. DB indexing
  5. Data loader
  6. Batch query

These all technique i have used still not able to do, please give me any suggestion how can i achive this ?

Leave a Comment