System Information
- Strapi Version: 3.6.8 (node v14.19.0)
- Operating System: Heroku
- Database: Postgresql
Hello, I have a broken app in production, please help.
when running _limit
alone is taking so long that the app crashes
-
myapp.com/products?_sort=created_at%3Adesc&_limit=100
is totally fine -
myapp.com/products?_limit=100
breaks the app
The limit increases the loading time exponentially:
- limit: 10 - 2322ms
- limit: 50 - 9479ms
- limit: 60 - 11303ms
- limit: 70 - 14087ms
But I can’t get to 100 limit
But running: /products?_sort=created_at%3Adesc&_limit=100
returns 100 products in 609ms.
I’m using gatsby-source-strapi
with Gastby so I can’t change the query.
The app has been running for 2 years, and no update made in the last 2 weeks. Is being used every day.