Jump to letter: [
BCDEFGIJLMNOPQRSUVWZ
]
python-cdbx - cdbx is a CDB reimplementation for Python
- Description:
CDB as a concept is a great idea for various reasons. It's fast, it's a
simple, portable file format and all operations can be done using one open
file descriptor.
cdbx tries to solve a few problems:
* support for Python 3
* better interface for CDB creation - you only need a file descriptor if you
want to. This is important if you want to create a CDB within a single
temporary file.
* all operations are independent from each other (multiple accesses at the
same time are possible). Thanks to the GIL it should be even thread safe.
This has not been tested yet, though.
* more natural interface for the main CDB class in general
* better error handling (especially with regard to python) in some places
* Since it’s a complete reimplementation, the licensing issue (people claim
to have with public domain software [cdb]) does not apply.
Packages