tree: 166da6b6a43e031264af3a9a7773800e84b44650 [path history] [tgz]
  1. client.jl
  2. README.md
http/get_simple/julia/client/README.md

HTTP GET Arrow Data: Simple Julia Client Example

This directory contains a minimal example of an HTTP client implemented in Julia. The client:

  1. Sends an HTTP GET request to a server.
  2. Receives an HTTP 200 response from the server, with the response body containing an Arrow IPC stream of record batches.
  3. Adds the record batches to a list as they are received.

To run this example, first start one of the server examples in the parent directory, then:

julia --project=.. -e "using Pkg; Pkg.instantiate()"
julia --project=.. client.jl