Alvaro Carneiro wrote:
Hello All,
It´s possible Zope use to store the site in a MySQL, Oracle, etc ?
Zope store all site in a few files in /var directory, what the limit of this internal database ? It´s reliable ?
Any document about this ?
tks again
**
Hello Alvaro, It is possible to replace the FileStorage (the default Data.fs file) with a different storage, such as an OracleStorage. I recommend there be strong business reasons for using an RDBMS over FileStorage -- the RDBMS interface will typically be several times (between 5x and 50x depending on how well tuned the RDBMS is) slower than FileStorage. Also, objects that are stored in OracleStorage are still opaque -- you cannot query them from outside Zope and get meaningful results back. The Zope FileStorage can use more than 2G of disk space so long as your version of Python and your operating system support large files. It is a very reliable storage; part of this is due to the simplicity of the model it uses. I dont know offhand of any document that discusses the merits of FileStorage vs OracleStorage (or any other alternative Zope storage) but you may be able to find one with Google. -- Matt Kromer Zope Corporation http://www.zope.com/