rakulang
Raku fbmac 1y ago 75%

High memory consumption in a hello world on Raku

https://fbmac.net/blog/memory-consumption-of-a-web-api-in-different-programming-languages

I did comparison of a hello world web service in a few programming languages to get an idea of how much memory each of them consumes from the start.

Raku started consuming 345MiB. Is it expected, or is it something wrong on my test?

I used this dockerfile:

FROM rakudo-star
RUN apt-get update
RUN apt-get install -y libssl-dev
RUN zef install Cro::HTTP --force-test
COPY . /app/
ENTRYPOINT ["perl6", "/app/app.raku"]

2
1
Comments 1