From ee1b597876b0cd76e9c1ea88fef231f38c49568e Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Thu, 5 Dec 2019 23:41:30 -0600 Subject: [PATCH] doc: add note on jemalloc in the readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 76607fe3..42496374 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,9 @@ Minimal HTTP server using good old threads and `Scanf` for routing. Free from all forms of `ppx`, async monads, etc. +**Note**: it can be useful to add the `jemalloc` opam package for long running +server, as it does a good job at controlling memory usage. + The basic echo server from `src/examples/echo.ml`: ```ocaml