Fast lookup of bulky "table"

Thomas Passin list1 at tompassin.net
Mon Jan 16 12:26:32 EST 2023


On 1/16/2023 10:14 AM, Stefan Ram wrote:
> However, operating systems and databases also try to cache
>    information in main memory that is estimated to be accessed
>    often.
Yes, and you can only know by testing, when that's possible. Also, if 
you know that you have the same queries repeated over and over, you can 
intern (basically, cache) their results in Python and get a performance 
boost that way.



More information about the Python-list mailing list