I am thinking about bisecting it now that I have a simple test. Also now I have
a Dockerfile to bootstrap any commit
FROM alpine
RUN apk add --no-cache g++ curl tar git
RUN git clone https://github.com/nim-lang/Nim.git;
RUN cd Nim; \
git clone --depth 1 https://github.com/nim-lang/csources.git;
ARG GITCOMMIT
RUN cd /Nim; \
git checkout -b testMemory; \
echo $GITCOMMIT; \
git reset --hard $GITCOMMIT
RUN cd /Nim/csources; \
sh build.sh; \
cd ../; \
bin/nim c koch; \
./koch boot -d:release; \
./koch tools;
- Memory usage skyrocketed with nim 0.18.0 (in my async tcp servic... aguspiza2
- Re: Memory usage skyrocketed with nim 0.18.0 (in my async t... Araq
- Re: Memory usage skyrocketed with nim 0.18.0 (in my asy... jcosborn
- Re: Memory usage skyrocketed with nim 0.18.0 (in my... aguspiza2
- Re: Memory usage skyrocketed with nim 0.18.0 (i... jcosborn
- Re: Memory usage skyrocketed with nim 0.18... aguspiza2
- Re: Memory usage skyrocketed with nim ... aguspiza2
- Re: Memory usage skyrocketed with ... dom96
- Re: Memory usage skyrocketed with ... aguspiza2
- Re: Memory usage skyrocketed with ... aguspiza2
- Re: Memory usage skyrocketed with ... aguspiza2
- Re: Memory usage skyrocketed with ... dom96
- Re: Memory usage skyrocketed with ... aguspiza2
