QUESTION:
If I set the compression attribute on a directory on a windows server, how does that effect file saving performance?
WHY I WANT TO KNOW:
I have a server that several batch processes save huge files on, and these are mostly Txt or CSV files that I'd like to compress to save disk space.
If it does compression on the fly as it writes the files, I would have to look for CPU usage when writing, and that may be an issue.
If it writes them uncompressed, and a background thread later compresses it, that would be ideal - as the batch processes would not be slowed down when they do their writes.
My alternative solution would be to not set the attribute on the directory, but have a scheduled job run the compact command on these files.