Re: [Zope] ZODB & large files
ethan mindlace fremen <mindlace@imeme.net> wrote:
Zopistas,
I'm setting up zope on a linux box with support for large files. (>2gb). I need to make sure that the ZODB will continue to work properly past this point. Is the filesystem stuff the ZODB does handled by python or ZODB?
If the answer is ZODB, where can I look for fs calls to make sure they're 64 bit?
The ZODB uses a "pluggable" Storage-derived object to do the actual reads/writes (this is where Ty Sarna's BSDDB Storage gets plugged in). The "standard" Storage is the FileStorage, defined in $ZOPE_HOME/lib/python/ZODB/FileStorage.py. -- ========================================================= Tres Seaver tseaver@palladion.com 713-523-6582 Palladion Software http://www.palladion.com
participants (1)
-
Tres Seaver