<div>Thanks for all comments, i did not have proper solution than reducing the amount of the data that is processing on the selecting queries. </div>
<div>Thanks again. <br><br></div>
<div class="gmail_quote">2008/10/22 Matthew Dempsky <span dir="ltr"><<a href="mailto:matthew@dempsky.org">matthew@dempsky.org</a>></span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div class="Ih2E3d">On Wed, Oct 22, 2008 at 1:33 AM, Robert Raschke <<a href="mailto:rtrlists@googlemail.com">rtrlists@googlemail.com</a>> wrote:<br>> Are you sure that uses plain old memory allocation for its cache<br>
> entries (I haven't looked, I must admit)?<br><br></div>Yes, I chose dnscache as a concrete example because it's a server<br>whose internals I'm thoroughly familiar with. :-)<br><br>dnscache allocates a big chunk of memory (1000000 bytes by default) up<br>
front for cache storage, but while processing requests, it allocates<br>additional memory for temporary storage for names relevant to the<br>resolution process.<br><br>E.g., if a cache receives a query for "<a href="http://www.erlang.org/" target="_blank">www.erlang.org</a>", it allocate 16<br>
bytes to store that name.  While resolving this query, it also<br>allocates temporary space for "<a href="http://a.root-servers.net/" target="_blank">a.root-servers.net</a>",<br>"<a href="http://d0.org.afilias-nst.org/" target="_blank">d0.org.afilias-nst.org</a>", "<a href="http://ns.erlang.org/" target="_blank">ns.erlang.org</a>", and so on.  Names are<br>
promptly freed as soon as they are no longer needed, but if allocating<br>space for one of these names fails, then dnscache gives up on<br>resolving "<a href="http://www.erlang.org/" target="_blank">www.erlang.org</a>" and the user tries again later.<br>

<div>
<div></div>
<div class="Wj3C7c">_______________________________________________<br>erlang-questions mailing list<br><a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br><a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
</div></div></blockquote></div><br>