Skip to content

Commit c1d05d8

Browse files
authored
Merge pull request #282 from sshanks-kx/chunk
supports http chunks, remove details saying otherwise
2 parents 4be5fa2 + aec11c8 commit c1d05d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/kb/programming-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Q has a built-in HTTP request command, which follows the syntax
1919
The string-to-send can be anything within the HTTP protocol the HTTP server will understand.
2020
:fontawesome-regular-hand-point-right: [jmarshall.com/easy/http](https://www.jmarshall.com/easy/http/)
2121

22-
kdb+ does not add to nor encode the string to send, and as it does not support ‘chunking’ you should specify HTTP 1.0 for your desired HTTP procotol. kdb+ will signal a `'chunk error` if it encounters a chunked response – not possible with HTTP 1.0. kdb+ doesn’t decode the responseit just returns the raw data.
22+
kdb+ does not add to nor encode the string to send, nor does it decode the response; it just returns the raw data.
2323

2424
```q
2525
q)/ string to send

0 commit comments

Comments
 (0)