Hi there
We are storing a list of “Application strings” for i18n localization in our application.
These strings can be as simple as “Go to next page” or more complex strings like a product description.
Each “Page” fetches the strings that belong to that page on the server and then ships that in the HTML so we can render localized HTML for SEO benefits. This is all working as expected but we have already hit the limit of 100 records per request.
I would really want to avoid doing an initial request to ask how many records there are and then do n/100 amount of queries to fetch my strings. The reason for this is I am running my app on a serverless platform where execution time is limited per function. I also want to avoid having my users wait for these dependent queries to finish.
Can anyone think of an alternative solution to this ?