Commit 0709760d authored by Chris McDonough's avatar Chris McDonough

Changed wording.

parent b16d9ffd
...@@ -2,30 +2,41 @@ Temporary Folders ...@@ -2,30 +2,41 @@ Temporary Folders
Overview Overview
Temporary Folders are Folders which are created out of memory, in such Temporary Folders are Folders which store their contents
the same way as a RAM disk, for example, which have their contents "in-memory", in much the same way as a RAM disk. The contents
lost upon shutdown. of a Temporary Folder are lost upon shutdown.
By default, Zope will create a temporary folder named "temp_folder" in
the root of the Zope installation.
Creating Creating
Creating a Temporary Folder is fairly straightforward; one creates them By default, Zope will create a Temporary Folder named "temp_folder" in
as you would a regular Folder; through the Zope management interface: the root of every Zope installation. This Temporary Folder will
be used by the Zope Sessions machinery, but it may be used for
other purposes as well.
You may create additional Temporary Folders. Creating a Temporary
Folder is fairly straightfoward; they are created in the same way
as a "regular" Folder through the Zope management interface:
- Specify an id (a name) for the folder - Specify an id (a name) for the folder
- Specify an optional title for the folder - Specify an optional title for the folder
Once created and mounted, Temporary Folders are regular Folder objects. Usage
Mounting of the Temporary Folder happens automatically the first time
it is accessed. Once created, a Temporary Folder acts just like regular Folder
object with the exception that the items which it contains will be
lost upon Zope shutdown and restart.
Since Temporary Folders use RAM to store data, it is advised to
add items to a Temporary Folder sparingly. The capacity of a
Temporary Folder is limited by available RAM.
Interaction with ZEO Interaction with ZEO
Temporary Folders exist local to the Zope server; thus, each server in Temporary Folders exist local to the Zope server. Thus, each
a ZEO cluster would have their own private copy of data in a Temporary server in a ZEO cluster would have their own private copy of data
Folder. Only temporary data that should be local to a specific Zope in a Temporary Folder. Only temporary data that should be local
instance should go in the Temporary Folder. Items which need to be to a specific Zope instance should go into a Temporary Folder.
shared between Zope servers should not be placed in Temporary Folders. Items which need to be shared between Zope servers in a ZEO
cluster should not be placed in Temporary Folders.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment