Microdict v0.1 is released : https://github.com/touqir14/Microdict 

What is Microdict?
A high performance python hash table library that is generally faster and 
consumes significantly less memory than Python Dictionaries. Benchmarks show 
that it can be upto 7 times more memory efficient in comparison to Python 
Dictionaries.

Microdict is a typed python dictionary that heavily relies on C extensions. 
Moreover, benchmarks show that its underlying C implementation can outperform 
both Google's Swiss Table and Facebook's F14 hash tables. Currently it supports 
the following 5 hash table types: 

"i32:i32" -> 32 bit signed keys and 32 bit signed values
"i32:i64" -> 32 bit signed keys and 64 bit signed values
"i64:i32" -> 64 bit signed keys and 32 bit signed values
"i64:i64" -> 64 bit signed keys and 64 bit signed values
"str:str" -> string keys and string values.

To learn more:
<P><A HREF="https://github.com/touqir14/Microdict";>Microdict v0.1</A> 
A high performance python hash table library that is generally faster and 
consumes significantly less memory than Python Dictionaries. (19-11-2020).

Contact me at shuha...@gmail.com.

Cheers,
Touqir 
_______________________________________________
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com

Reply via email to