<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Erik,<div><br></div><div>Doh! Thank you very much by pointing that out. That was the fix. Memory consumption is now constant and below 20MB.</div><div><br></div><div>/W<br><div><br></div><div><div><div>On 28 jan. 2013, at 09:46, Erik Søe Sørensen <<a href="mailto:eriksoe@gmail.com">eriksoe@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">2013/1/26 Ward Bekker (TTY) <span dir="ltr"><<a href="mailto:ward@tty.nl" target="_blank">ward@tty.nl</a>></span><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word"><div>Hi,</div><div><br></div><div>I run into high memory usage (>1.5GB) when running `crack_util:crack` from this module: <a href="https://gist.github.com/4642789" target="_blank">https://gist.github.com/4642789</a> (make sure crypto is running: `crypto:start()`). As far as I can see, it's not creating (or holding on to)  huge pieces of data.</div>
<div><br></div><div>Why is that?</div></div></blockquote><div><br></div></div>It happens in this line:<br><div style="margin-left:40px">lists:seq(0, Products-1)).<br></div>because<br><div style="margin-left:40px">Products = round(math:pow(length(?CHAR_LIST), TryLength)) = 59^5 = 714924299<br>
</div>lists:seq() is, as anything else in Erlang, calculated eagerly, so you get a full representation of the list.<br>In a 32-bit Erlang VM, that takes 5,7GB.<br><br>You may want to write a function that folds over a range of integers, and use that instead of lists:foldl(_,_,lists:seq(A,B)) :-)<br>
<br>/Erik<br>
</blockquote></div><br></div></div></body></html>