> What about the SBS/LMS cache folder? My current LMS cache is 271MB. Are > there parts of this that would be best suited to keep on SSD, whilst > relocating other parts back on HDD? e.g. there is an Artwork folder that > might have a lot of small files, but also an artwork.db? Is the artwork > cache folder frequently changing?
Like erland said, the artwork cache folder is no longer used. I think the installer may have been responsible for deleting it, so if you're running from SVN, it won't have been deleted. I run a batch file each night to compact the SQLite databases using the 'SQLite command-line shell' (http://www.sqlite.org/download.html/sqlite.html). It helps to keep the database sizes in check. The databases can get particularly large if you run full clear & rescans, because when the databases are cleared, the space isn't reclaimed. New & changed scans also cause the databases to grow, but not as severely. sqlite "D:\slim\cache\artwork.db" "VACUUM;" sqlite "D:\slim\cache\cache.db" "VACUUM;" sqlite "D:\slim\cache\library.db" "VACUUM;" sqlite "D:\slim\cache\persist.db" "VACUUM;" ------------------------------------------------------------------------ JJZolx's Profile: http://forums.slimdevices.com/member.php?userid=10 View this thread: http://forums.slimdevices.com/showthread.php?t=95917 _______________________________________________ beta mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/beta
