Bug #12771
Allow setting max memory consumption
Description
I want to limit a ruby process to 100mb ... if the limit is reached it should run GC
Already tried various RUBY_ settings but nothing seems to have that effect ... I don't want to sprinkle GC.start all over my codebase :(
Updated by shyouhei (Shyouhei Urabe) over 4 years ago
- Status changed from Open to Feedback
Do you mean Process::setrlimit(Process::RLIMIT_AS, 100 * 1024 * 1024)
does not work for you? If that is the case please explain why?