Slashdot Mirror


User: salotia

salotia's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. First kryptonite, now this... on Earthlike Planet Orbiting Nearby Star · · Score: 1

    Yesterday we had kryptonite being found, today we learn about a large planet which is "earth like" and orbits a red sun (granted a red dwarf not a red giant)... I think we better start watching out for UFO sightings around corn fields.

  2. Re:not terribly useful quite yet on Python-to-C++ Compiler · · Score: 1

    This could be an approach for implementing n-tuples :-)

    http://www.boost.org/libs/tuple/doc/tuple_users_gu ide.html

  3. Re:Memory Management on Downsides to the C++ STL? · · Score: 1

    This is probably because, as you suspect, most STL implementations use a custom allocator for memory allocations which NEVER releases memory to the system. When objects destruct, it places this memory on a free-list and then attempts to reuse it later.

    This increases performance for multithreaded apps, but has the obvious disadvantage that if you had to handle one request that used up a large amount of memory, your server will not release that memory to the OS until the process exits.