TODO
====

Prototype and script a way to use a separate ZODB. Quote Maurits:

        app.quickstorage should be a mount point for a separate
        database, where the instance in buildout should have code like
        this:

        zope-conf-additional =
            <zodb_db quick>
                mount-point /quickstorage:/
                cache-size 20000
                <filestorage catalog>
                    path ${buildout:directory}/var/filestorage/quick.fs
                </filestorage>
            </zodb_db>

        Then add the ZODB Mount Point manually in the ZMI.

        Then in a 'bin/instance debug' session do this:

        from BTrees.OOBTree import OOBTree
        app.quickstorage.tree = OOBTree()


        #tree = self.context.quickstorage
