Send large data (~5MB) to trpc backend
I need to build a feature that reads sqlite files in memory, my idea is to upload the file, parse it and pass it to my trpc backend that will create an in memory sqlite db to perform some queries.
However, it seems passing large payloads takes ages (never finished) even locally, im not sure if trpc is not equipped to handle huge payloads.
Please share if you have a solution or even a better way to do it.
NOTE: I cant have a single db - each use can upload their own sqlite db file
TLDR: how to upload a sqlite dump & perform queries on it
However, it seems passing large payloads takes ages (never finished) even locally, im not sure if trpc is not equipped to handle huge payloads.
Please share if you have a solution or even a better way to do it.
NOTE: I cant have a single db - each use can upload their own sqlite db file
TLDR: how to upload a sqlite dump & perform queries on it
