Commit b16d9ffd authored by Chris McDonough's avatar Chris McDonough

Changed wording.

parent 1d71f211
...@@ -11,22 +11,26 @@ ...@@ -11,22 +11,26 @@
<tr> <tr>
<div class="form-help"> <div class="form-help">
<p> <p>
Transient Object Containers are used to store transient data in Zope; this Transient Object Containers are used to store transient data.
transient data persists, but only for a limited period of time. Transient data will persist, but only for a user-specified period of time,
(the "data object timeout") after which it will be flushed.
</p> </p>
<p> <p>
It is recommended that Transient Object Containers be added to storages which It is recommended that Transient Object Containers be added to storages which
do not support undo operations; transient objects are write-intensive, and do not support undo operations; transient objects are write-intensive;
can generate considerable load on the storage. their use may cause many undoable transactions, potentially bloating
undoing ZODB databases.
</p> </p>
<p> <p>
Transient Object Containers support <b>Notification Targets</b> which Transient Object Containers support <b>Notification Targets</b> which
are methods which are invoked when transient objects are added or deleted are methods which are invoked when transient objects are added or deleted
from the container. A notification target is invoked with the item being from the container. A notification target is invoked with the item being
operated upon, and the transient object container as arguments. Specify operated upon, and the transient object container as arguments. For the add
the path to the method to be invoked to receive the notification. and delete notification targets, specify the Zope physical path to the
method to be invoked to receive the notification
(e.g. '/folder/add_notifier').
</p> </p>
</div> </div>
</tr> </tr>
......
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