bill

Results 84 comments of bill

Looks like there isn't much magic to it. ``` req, err := http.NewRequest("POST", url, bytes.NewReader(params)) req.Header.Add("content-type", "application/json") req.Header.Add("accept", "application/json") req.Header.Add("X-Stream", "true") // this is the new header to add resp,...

Agree, obviously `ioutil.ReadAll` is waiting for the last chunk of data to be received before continuing which then gets parsed. To actually get end to end streaming I think you...

I did a few quick tests before and found that streaming is slightly (1 - 2% on my configuration) slower if you are returning a very small number of results....

Which benchmark is this? Are you testing neoism or just Neo4j directly?