As a module maintainer I want to ensure, that we can handle thousands of stories.
Currently we fetch first 100 stories from the Storyblok API and check the total header to find out how many more left to fetch.
500 more pages will result in 5 more requests from the server to the Storyblok API.
What if we have not 500, but 5000 more stories, how does it scale?
Can the underlying h3 server handle 50 requests in parallel? If no, what can we do to improve it?
For example, we can group requests and send them in a sequence.
As a module maintainer I want to ensure, that we can handle thousands of stories.
Currently we fetch first 100 stories from the Storyblok API and check the
total
header to find out how many more left to fetch. 500 more pages will result in 5 more requests from the server to the Storyblok API. What if we have not 500, but 5000 more stories, how does it scale? Can the underlying h3 server handle 50 requests in parallel? If no, what can we do to improve it?For example, we can group requests and send them in a sequence.
AC