Closed LincolnBryant closed 2 years ago
In the UC squid, for example, we set:
CacheMem: "32768"
When we are using multicore mode, that will do 2 incompatible things:
This means that the container will use N*CacheMem MB of RAM, which is N times larger than what we request!
N*CacheMem
N
Let's plan to let the user specify how much memory they want to use, total, and we don't leak the internal abstractions to the user.
Fixed by #570
In the UC squid, for example, we set:
When we are using multicore mode, that will do 2 incompatible things:
This means that the container will use
N*CacheMem
MB of RAM, which isN
times larger than what we request!Let's plan to let the user specify how much memory they want to use, total, and we don't leak the internal abstractions to the user.