Tag:
memory
Archive
Firefox Engineer On Memory Leaks
An explanation about Firefox's apparently excessive usage of memory in installations of Firefox 1.5 has been posted by one of the project's lead engineers.
Archive
Samsung Has A Shift In Memory
Samsung Electronics claims that it is "leading the industry shift" from DDR1 (Double Data Rate 1) to DDR2 main memory.
Archive
Apple Doubles Mini Memory, Speeds Up iBooks
Three models of the Mac mini will include 512 MB of memory, with the starting price remaining at $499.
Archive
CDs, Visual Memory, and Digital Music Subscriptions
While waiting for someone to show up to a meeting, a few of us were chatting about music. Greg was playing a selection from his "music that'd scare you about the rest of my music collection" (or something like that).
Archive
She Wore a Teeny-weenie, Itsy-bitsy, Flash Memory Cell
After the recent stem-cell cloning bombshell, another group of South Koreans has proven their dexterity with all things tiny-really tiny. Samsung Electronics is set to begin mass production of its 4 gigabit NAND flash memory cell, a device that is 1/314,000 the width of a single hair.
Archive
It Can Do What? Tech Giants Look Into Phase-Change Memory
Macronix, Infineon, and IBM are combining efforts to investigate the potential of a new kind of computer memory that may change the face of processing. It's called phase-change memory (PCM).
Archive
AMD Suffers Memory Loss
After warning of lower profits due to declining sales of its memory products, Advanced Micro Devices (AMD) shares fell 20%.
Archive
Avoid C# Memory Leaks with Destructor and Dispose
Here are two classes that allocate resources, the first class needs to implement a destructor and Dispose, but the second class doesn't need to. The difference is that the first class allocates resources in the constructor and doesn't clean them up immediately. In contrast, the second class allocates resources in a member function and carefully frees them before exiting (using a finally block), so the second class author doesn't need to bother writing Dispose and a destructor.