On Sat, Feb 14, 2009 at 1:31 AM, Stuart Sierra <the.stuart.sie...@gmail.com> wrote: > > On Feb 13, 6:13 pm, Christian Vest Hansen <karmazi...@gmail.com> > wrote: >> I see no mention of a JVM being available for those CPUs, but perhaps >> the no-asm HotSpot can be build with gcc on it. > > Looks like they run Linux, so it would probably be possible. This > article <http://www.networkworld.com/news/2009/020509-sicortex.html> > says they use slower, cheaper processors that work best when you're > doing lots of small computations in parallel. > > The part I get excited about is the 8 TB of memory. When can I get > THAT on my desk?
You run into problems with the garbage collector when the heap gets big: the bigger the heap, the longer it takes to compact. Azul has hardware support for their garbage collector which allows their compaction phase to run concurrently with the application, otherwise there'd be no way they could make use of the 768 GB ram their kit can scale to, unless striped across hundreds of JVMs. If you try to scale a normal collector to those heap sizes, you will see your stop-the-world collections jump from sub-second to minutes or even hours. > > -Stuart Sierra > > > -- Venlig hilsen / Kind regards, Christian Vest Hansen. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---