You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
I love python, but this will most likely be the hardest part. Python bloats memory to much that in those cases Cython or C might be the answer even if it was slower than python. See this post for some basic python 2 memory usage. http://cerebralmanifest.com/python-memory-footprint/
@pykler CPython's dictionary implementation is one of its most optimized parts, especially on Python 3+. Not just because dictionaries are very useful, but especially since it's used to back most of the objects in the system, too (__dict__). Python dictionaries are very well behaved, and will only be about half-to-two-thirds full once they're big enough to matter. Read more here: https://utcc.utoronto.ca/~cks/space/blog/python/DictionarySpaceUsage
We should benchmark the memory usage as well, since it's an undoubtedly very important metric for an in-memory database.
The text was updated successfully, but these errors were encountered: