How much data can rails parameter pass? -
i'm trying make post request server along massive string of data placed database. noticed cut off @ point (about 440k of data in 1 variable). i'm wondering how data can rails hold in parameter pass server?
thanks.
there no limit imposed rails on size of posted data (or data passed in url)
other intermediaries may have have limits however, example nginx has client_max_body_size
. check database settings: if data longer maximum length of corresponding column databases silently truncate (others raise error). i'd start checking in controller parameters have expected length.
Comments
Post a Comment