Coder Social home page Coder Social logo

Comments (3)

ansiwen avatar ansiwen commented on July 20, 2024

@TheLortex @haesbaert @dinosaure pinging you, because you guys helped me before with other TCP/IP related issues. 😬

from ocaml-cohttp.

ansiwen avatar ansiwen commented on July 20, 2024

I can indeed disable the Nagle's Algorithm and make the issue disappear by using a Stack wrapper like this:

module Stack_nodelay (Stack : Tcpip.Stack.V4V6) = struct
  include Stack
  module TCP = struct
    include Stack.TCP
    let write = Stack.TCP.write_nodelay
    let writev = Stack.TCP.writev_nodelay
  end
end

However, as I mentioned above, even with ~flush:false it creates three separate "tinygrams" for one response.

Bildschirmfoto 2023-10-05 um 17 43 54

from ocaml-cohttp.

ansiwen avatar ansiwen commented on July 20, 2024

I found one of the problems:

let flush _ =
(* NOOP since we flush in the normal writer functions above *)
Lwt.return_unit

Is there a reason why every write in cohttp-mirage is flushed @avsm ?

from ocaml-cohttp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.