On 24/03/21 7:47 am, Chris Angelico wrote:
On Wed, Mar 24, 2021 at 5:35 AM Vijay Patel <[email protected]> wrote:
>
Suggestion: 1. Big Set, Big Dictionary -
>
How would it be stored on disk? Would it be in some sort of database? If so, check out a database access module
Also remember that virtual memory is a thing. If your Python data structure is bigger than your RAM, it will get paged out to disk anyway, so you might not need to do anything. -- Greg _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/SFP2URO4Z3TNXTWPDRBLBJY32SUDDEGI/ Code of Conduct: http://python.org/psf/codeofconduct/
