fastcache icon indicating copy to clipboard operation
fastcache copied to clipboard

C implementation of Python 3 lru_cache

Results 5 fastcache issues
Sort by recently updated
recently updated
newest added

It would be useful to be able to install this in environments where I don't have access to a compilation environment. I've had success setting up wheel building infrastructure using...

Run this in SymPy commit 08a8d78c7876f3266c1714d32158791e14f17f1f (the bug will probably be fixed soon). With fastcache installed: ``` >>> from sympy import * >>> oo**I Fatal Python error: Cannot recover from...

I've noticed this library is built without any performance related compiler flags. Or at least it is not documented anywhere. It would be interesting to investigate performance gain from using...

The `timeout` signal raised during the long running test_wester tests in sympy seem to get lost. - Pure python cache - signal handled appropriately every time ``` bash $ bin/test...

Timing profiles for various aspects of the algorithm would be helpful for optimization (maybe even a C++ implementation which bypasses some of the PyObject machinery): - Initialization of `hashseq` -...