Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The limit is dependent on both the server and the client used (and if applicable, also the proxy the server or the client is using). </p> <p>Most webservers have a limit of 8192 bytes (8KB), which is usually configureable somewhere in the server configuration. As to the client side matter, the HTTP 1.1 specification even warns about this, here's an extract of <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.1" rel="noreferrer">chapter 3.2.1</a>:</p> <blockquote> <p><em>Note: Servers ought to be cautious about depending on URI lengths above 255 bytes, because some older client or proxy implementations might not properly support these lengths.</em></p> </blockquote> <p>The limit is in MSIE and Safari about 2KB, in Opera about 4KB and in Firefox about 8KB. We may thus assume that 8KB is the maximum possible length and that 2KB is a more affordable length to rely on at the server side and that 255 bytes is the safest length to assume that the entire URL will come in.</p> <p>If the limit is exceeded in either the browser or the server, most will just truncate the characters outside the limit without any warning. <em>Some</em> servers however may send a <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.15" rel="noreferrer">HTTP 414 error</a>. If you need to send large data, then better use POST instead of GET. Its limit is <em>much</em> higher, but more dependent on the server used than the client. Usually up to around 2GB is allowed by the average webserver. This is also configureable somewhere in the server settings. The average server will display a server-specific error/exception when the POST limit is exceeded, usually as HTTP 500 error.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload