igcomp
Цитата:
Такого не может быть в принципе. При сжатии файл разбивается на куски по 16 кластеров, и если кусок не становится меньше как минимум на один кластер, он записывается несжатым. Таким образом для плохо сжимаемых файлов потеряно будет только процессорное время на попытку сжатия, а при чтении никаких потерь уже не будет.
А вот на серваках сжатие нужно использовать очень продуманно. Вот что пишет на эту тему Microsoft:
Цитата:
Цитата:
Например хранение фильмов не только не даст сжатие, а еще и лишнее отхватит.
Такого не может быть в принципе. При сжатии файл разбивается на куски по 16 кластеров, и если кусок не становится меньше как минимум на один кластер, он записывается несжатым. Таким образом для плохо сжимаемых файлов потеряно будет только процессорное время на попытку сжатия, а при чтении никаких потерь уже не будет.
А вот на серваках сжатие нужно использовать очень продуманно. Вот что пишет на эту тему Microsoft:
Цитата:
Heavily loaded servers that have substantial input/output (I/O) traffic are poor candidates for data compression. Because the server must decompress files before sending them across the network, the decompression workload can cause performance degradation on the server. However, read-only servers, read-mostly servers, or servers that store infrequently accessed files might not get performance degradation. For example, if 50% of the files on a server are frequently accessed and are close to 100% of the server's I/O workload, do not compress those files. If the other 50% are accessed once every few days, and account for less than 1% of the server workload, you might want to compress them.
If your workload involves asynchronous I/O, do not use compression. Compression converts all I/O to synchronous.
If you have programs that use transaction logging and constantly write to a database or log, have the programs store their files on an uncompressed volume. If a program modifies data by using mapped sections in a compressed file, it can produce dirty pages faster than the mapped writer can write them. (A dirty page is a page that has been modified in the cache, but is not yet written to disk.) For example, programs such as Microsoft® Message Queue cannot function on compressed NTFS volumes.
It is recommended that you avoid placing user home folders and roaming profiles on compressed NTFS volumes because of the large number of read and write operations performed in these folders.