cancerDHC / sheet2linkml

Python package for conversion of Google Sheet to LinkML for CCDH
Apache License 2.0
1 stars 3 forks source link

Consider whether we need to change the @lru_cache default memory limit #18

Open gaurav opened 2 years ago

gaurav commented 2 years ago

We currently use an @lru_cache with a default maximum size of 128 to cache some values that we look up through the terminology service. If this limit proves to be too low, we can increase this value or replace it with None, which will replicate the functionality of the previously used @cache annotation.