I'm making a script to import hashes to a wiki which purpose is for people to download metadata from and get files curated automatically. For this I need all hash types used by any popular file manager that may want to pull data from the wiki.
What are the hash types, used by popular programs that could use this wiki, that you know about?
cross-posted from: https://feddit.de/post/248196
> I have lots of multiprocessing processes which have to add to and search in a dict. Deletion of values is not needed.
>
> Atm I am using multiprocessing.Manager() and
>
> `dict = manager.dict()`
>
> This works pretty well, but I think that the manager is a huge bottleneck here. Any ideas? It has to run on older Python 3 versions, otherwise I would use this cool thing I found: https://github.com/ronny-rentner/UltraDict