Besser als perfekt geht halt nicht.Wenn vorhe rschon alles optimal läuft, dann kann es nicht besser werden...
wenn man für MePo selber he ne SSD nutzt
Ne HDD ist da nicht so pingelig, aber schaden tut es nicht.Hm, aber es würde die HDD schonen, weil ja ständig geschrieben und gelöscht wird,
Ram wird permanent refresched, muss es sogar. Da ist es völlig Wurscht, ob sich der Inhalt verändert oder nicht.Dem Speicher sollte der Dauerzugriff ja egal sein oder
Natürlich, wenn eine RAM Disk vorhanden ist, gibt es keinen besseren Platz für diesen Müll...Habt ihr euren Win Temp,TMP Ordner auch auf die RAM Disk verschoben
Das halte ich für ein übles Gerücht. SSD sind auch heute noch erheblich empfindlicher als HDD.die SSD zu schonen, wobei das bei den heutigen gar nicht mehr nötig ist
Vom eigentlichen RAM abgesehen (Ram ist auch Ressource) ist das absolut nicht der Rede wert.Ausser vllt die Software, die die RAM Disk zur Verfügung stellt, raubt meinem HTPC Resourcen, oder ist das nicht der Rede wert.
Well, not natively. If your 32 bit Windows version supports memory access above 4 GB through address window extension (AWE) and with physical address extension (PAE) turned on, it could be done through an additional memory allocation driver called awealloc.
Modify awealloc to auto-load at system startup:
sc config awealloc start= system
This will take effect at next reboot. Meanwhile you can load it manually:
net start awealloc
Then, create the RAM disk (schedule this command with Windows Scheduler if you want it to happen automatically at system startup):
imdisk -a -f \\.\awealloc -s 400M -m R: -p "/fs:ntfs /q /y"
This will ask awealloc driver to allocate 400 MB and then create a RAM disk drive R: within that memory and format it with NTFS. The 400 MB will primarily be allocated from as high memory addresses as possible, but parts of it could be allocated at lower addresses if not enough memory is free or otherwise accessible at high ranges. Check Windows Event Log to see error messages during memory allocation.