-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Huge memory usage #4
Comments
Yes, the underlying hash table uses fixed key and value length in This package is kind of experimental, and I didn't do much test on it, and it DO NOT use lock to avoid concurrency problems. |
BE CAREFUL: this package is not for general purpose usage, it only accepts key < |
OK thanks anyway, it was an interesting experiment. |
OK, and I've added the information in README.md |
Hello I just ported it to Python 3.7 and made some tests to compare with Redis...
Performance is pretty good up to ~100,000 keys, however I am finding that the shared file seems unreasonably big, at ~500MB for that.
Is that expected?
I am also observing huge performance degradation at bigger sizes, probably because the file does not fit in RAM anymore...
The text was updated successfully, but these errors were encountered: