Is there a limit to the length of a url in Rails apps? I have a bunch of query parameters that I am trying to attach to a URL, and, at some point, I simply get a !! Invalid request
error in the logs. This error appears when I try to attach something like 400 integers as a query parameter.
If there is a limit, is there a way around it, or do I need to switch to Post
methods?
EDIT
Is there a Rails specific limitation that may be less than the HTTP standard?