Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
0709760d
Commit
0709760d
authored
Nov 14, 2001
by
Chris McDonough
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed wording.
parent
b16d9ffd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
16 deletions
+27
-16
lib/python/Products/TemporaryFolder/help/TemporaryFolder.stx
lib/python/Products/TemporaryFolder/help/TemporaryFolder.stx
+27
-16
No files found.
lib/python/Products/TemporaryFolder/help/TemporaryFolder.stx
View file @
0709760d
...
...
@@ -2,30 +2,41 @@ Temporary Folders
Overview
Temporary Folders are Folders which are created out of memory, in such
the same way as a RAM disk, for example, which have their contents
lost upon shutdown.
By default, Zope will create a temporary folder named "temp_folder" in
the root of the Zope installation.
Temporary Folders are Folders which store their contents
"in-memory", in much the same way as a RAM disk. The contents
of a Temporary Folder are lost upon shutdown.
Creating
Creating a Temporary Folder is fairly straightforward; one creates them
as you would a regular Folder; through the Zope management interface:
By default, Zope will create a Temporary Folder named "temp_folder" in
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 optional title for the folder
Once created and mounted, Temporary Folders are regular Folder objects.
Mounting of the Temporary Folder happens automatically the first time
it is accessed.
Usage
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
Temporary Folders exist local to the Zope server; thus, each server in
a ZEO cluster would have their own private copy of data in a Temporary
Folder. Only temporary data that should be local to a specific Zope
instance should go in the Temporary Folder. Items which need to be
shared between Zope servers should not be placed in Temporary Folders.
Temporary Folders exist local to the Zope server. Thus, each
server in a ZEO cluster would have their own private copy of data
in a Temporary Folder. Only temporary data that should be local
to a specific Zope instance should go into a Temporary Folder.
Items which need to be shared between Zope servers in a ZEO
cluster should not be placed in Temporary Folders.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment