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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -