Sorry, but that's not enough information.<div><br></div><div>Where do these chunks come from: source code, some other process, ets? How many chunks are in a string? Do you compose strings out of other strings, or just these chunks? Are you constructing them from tail to head like you would a list? Is the string constructed all at once, or over some time?<span></span></div>
<div><br></div><div>It sounds like you have some code that's doing something with these strings, because you say that it's faster to use lists than binaries. Maybe if you post whatever it is you used to determine that, someone can help you find a better algorithm and/or data structure for that benchmark. <br>
<br>On Thursday, July 12, 2012, CGS  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Unfortunately, the project is still in the planning stage, so, no real code was written yet. Nevertheless, I plan some open source projects for some parts of the project.<div>
<br></div><div>About each string, it is constructed from chunks of fixed size, usually, much smaller than the string itself, hopefully.</div>
<div><br></div><div><br><br><div>On Thu, Jul 12, 2012 at 7:29 PM, Bob Ippolito <span dir="ltr"><<a>bob@redivi.com</a>></span> wrote:<br><blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

It would be helpful if you were a lot more specific about how these strings are constructed and what the strings mean. Maybe if you shared some of the code, you'd get better guidance.<div><div>
<br><br><div>On Thu, Jul 12, 2012 at 9:06 AM, CGS <span dir="ltr"><<a>cgsmcmlxxv@gmail.com</a>></span> wrote:<br>
<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><br></div><div>Hi Joe,</div><div><br></div><div>

The main problem is to find out which strings are read-only and which strings are read-write, and that requires an algorithm for itself (processing time and extra space - I don't know how negligible are at this moment) as I don't know from before which string will be used more frequently and which less frequently. The second problem is I would like to minimize the harddisk usage, so, to try to store as much information as possible in RAM, but without slowing down the overall process. I know, I am an idealist. :)</div>



<div><br></div><div>I thought also about working with lists and keep them as binaries when I don't use them, but, as I said before, that implies a lot of garbage to collect which either can be collected immediately after invoking list_to_binary/1, either allowing GC to appear naturally when there is insufficient memory, or to invoke it at certain moments (either at regular interval of time or based on a scheduler triggered by the application usage). I am afraid that all may be quite inefficient, but they may work faster than processing binaries directly. That I have no idea yet. That's why I am asking here for opinions.</div>



<div><br></div><div>Nevertheless, I didn't think of trying to split the strings in two categories: read-only and read-write. That definitely is something I should take into account.</div>


<div><br></div><div>Thanks a lot for your thoughts and shared experience.</div><div><br></div><div>Cheers,</div><div>CGS</div>


<div><br></div><div><br></div><div><br></div><div><br></div><div>On Thu, Jul 12, 2012 at 5:17 PM, Joe Armstrong <span dir="ltr"><<a>erlang@gmail.com</a>></span> wrote:<br>


<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">As you point out list processing is faster than binary processing.<br>
<br>
I'd keep things as lists as long as possible until you run into memory problems<br>
If you plot the number of strings against response times (or whatever)<br>
you should see a sudden decrease in performance when you start paging.<br>
At that point you have too much in memory - You could turn the oldest strings<br>
into binaries to save space.<br>
<br>
I generally keep string as lists when I'm working on them and turn<br>
them into binaries<br>
when I'm finished - sometimes even compressed binaries.<br>
<br>
Then it depends on the access patterns on the strings - random<br>
read-write access is horrible<br>
if you can split them into a read-only part and a write-part, you<br>
could keep the read-only bit<br>
as a binary and the writable bit as a list.<br>
<br>
It's worth spending a lot of effort to save a single disk access. Then<br>
it depends what you do with your strings. If you have a solid state<br>
disk and want read only access to the strings<br>
then you could store them on disk - or at least arrange so that the<br>
constant parts of the strings<br>
are on disk and the variable parts in memory. SSDs are about 10 times<br>
slower than RAM for reading and usually have multiple controllers so<br>
can be very fast - but you need to think a bit first.<br>
<br>
I'd start with a few measurements, try to stress the system and see<br>
where things go wrong.<br>
Plot the results - it's usually easy to see when things go wrong.<br>
<br>
Cheers<br>
<span><font color="#888888"><br>
/Joe<br>
</font></span><div><div><div><div><br>
<br>
<br>
On Thu, Jul 12, 2012 at 2:46 PM, CGS <<a>cgsmcmlxxv@gmail.com</a>> wrote:<br>
> Hi,<br>
><br>
> I am trying to find a balance in between processing speed and RAM<br>
> consumption for sets </div></div></div></div></blockquote></div></blockquote></div></div></div></blockquote></div></div></blockquote></div>