#5371 will set better defaults, but only for a new server
installation.

For an existing notebook, to adjust the current save times on
nb.sobj  mimic the following session at the sage command line:

sage: nb = load('/home/somebody/.sage/sage_notebook/nb.sobj',
compress=False)
sage: print nb.conf()
Configuration: {'number_of_backups': 3, 'idle_timeout': 0,
'save_interval': 360, 'idle_check_interval': 360}
sage: nb.conf()['save_interval']=int(900)   #15 minutes
sage: print nb.conf()
Configuration: {'number_of_backups': 3, 'idle_timeout': 0,
'save_interval': 900, 'idle_check_interval': 360}
sage: nb.save()

Use the script at #5880 to clean out massive numbers of saved
worksheets.  Apply the patch to reduce the actions that lead to a
worksheet saves.

Apply #5895 if you want to permanently cap snapshots to 30 per
worksheet, with amnesty for worksheets created before May 1, 2009.

Rob


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to