<[EMAIL PROTECTED]> writes: > Just another quick question. I have never used cdb before, is there > any advantage of dbm? I noticed the cdb files are larger but have > not noticed any performance differences between the two.
CDB and DBM are equivalent in lookup speed, but when the database needs to be rebuilt, CDB is much faster. If you are using really large lists, I highly recommend CDB. Basically it's a performance/convenience trade-off. CDB performs better, but requires installation of a 3rd party extension module. DBM's performance is slightly poorer but works "out of the box" with any Python. _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
