I have a form on my site where users can submit answer text to be checked by the controller.
It uses a standard GET form:
<%= form_tag('/submit', method: "get", remote: true) do %>
But I recently got the following error on long answer:
Request-URI Too Large
WEBrick::HTTPStatus::RequestURITooLarge
Should I change the form to POST to fix the error? Would this require any other changes?