It depends on the browser / web server, but the average limit for a URL is 2000 characters. So yes, if you press the limit, change it to POST.
This will require changing the form tag:
<%= form_tag('/submit', method: "post", remote: true) do %>
Depending on the current routing, a route update may also be required: (since when using resources , POST requests are routed by default to the create method in your controller)
match '/submit', to: 'submit#index', via: :post
source share