Caffeinate The World <[EMAIL PROTECTED]> writes: > is dbm format the same as gdbm? which would be a better choice? > dbm/gdbm or cdb?
We use a neat little bit of Python code that uses whatever DBM implementation is installed on your system. If you install gdbm, that should be the implementation that TMDA uses. Using DBM is easier up-front, because nearly every Unix installation has some form of the DBM code installed by default. Python has native support for these. CDB is probably a faster system with less overhead, but you'll need to install a third-party Python module for the support. See the docs at http://www.tmda.net/filter-sources.html#autoflags Tim _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
