datrie
datrie copied to clipboard
Fast, efficiently stored Trie for Python. Uses libdatrie.
I have a usecase where I am reading and writing datrie data multiple times from and to a single while, after a certain limit of operation, I am facing this...
i want to ask if datrie is the same with libdatrie? and how to install libdatrie?
This actually takes care of several issues/PRs (some open, some closed). Changes: * pep517 with cmake extension builder (py36 - py39) * default is build from local git submodule (clones...
This PR requires https://github.com/tlwg/libdatrie/pull/12 to be merged first (or maybe create an own fork of that lib, because that fork is inactive).
Adding power support. Adding power support ppc64le with Continues Integration/testing so that code remains architecture independent. This is part of the Ubuntu distribution for ppc64le. This helps us simplify testing...
I am working for IBM to port cpu arch ppc64le for open sources. This PR adds CI support for the IBM Power Little Endian (ppc64le) architecture. The idea is to...
Is it thread-save for reading (filling from one thread and then calling `has_keys_with_prefix` from many threads)?
Fixes #38 Big-endian machines are unable to decode the UTF-32 encoded strings. The default decoding is for little-endian machines. Therefore, added a simple if condition to identify the type of...