What are the restrictions in term of storage space, persistency, security concerns etc… from using the local file system to store temporary files.
I run a analysis script which writes a couple of png’s and pdf’s. At the end of the script all of the files are merged into a single downloadable pdf. It is much quicker for me to write the temporary files to the local file system and then access them from there. Once the script is done, all temp files are deleted. I can use the database as a temporary store, but it’s a little bit slower than storing it locally.
I’m expecting only a handful of users to access the system at a particular time.
Here are some questions:
- How much local file space do I have to work with? (5mB, 100mB?)
- Will a client instance access the same server file system for the duration of the session?
- How does this change between professional and dedicated plans?
- Anything to look out for from your experience?