I have a page where the user inputs a list of (potentially) thousands of strings, which then leads to a page that uses this list. I tried to just use a query parameter to pass the strings to the latter page, but according to another StackOverflow post that would exceed several browsers' URL length limits, although it worked just fine on Chrome, Firefox and Safari when I tested it. Are there any alternatives to passing massive a query parameter?
Note: One alternative would be to switch to a single-page app but I'd like to avoid that much complexity if it's possible.