-
Notifications
You must be signed in to change notification settings - Fork 131
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
in-memory use #67
Comments
@dineshbvadhia, what is your use case? |
To use the data stored in sqlitedict in-memory for performance reasons. The in-memory db will be read-only. |
What advantages does this offer compared to a regular dict? |
Are you saying sqlitedict operates in-memory already just like a regular dict? |
No. |
Will a regular dict support scalability for say 10m to 100m key:value pairs? |
In regards to memory usage, it's not easy to answer In regards to speed, Try benchmarking it. |
A sqlitedict db is created and saved to disk eg.
with SqliteDict('mydb'), flag='c') as db:
db.close()
How can you now use 'mydb' in-memory using the sqlite :memory option with sqlitedict?
The text was updated successfully, but these errors were encountered: