You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks good! If you're willing to implement it, I'd suggest giving it a go; If all tests pass locally, I'll pull it into a dev branch to run all Mongo core tests against an actual MongoDB server (I just can't get PRs to run tests with secrets), and then - if it doesn't break anything - it can be merged and released. 🥇
It seems that calling the same sample function with identical argument values can yield two different entry keys; see an example of a simple function:
The default hash function
cachier/cachier/core.py
Lines 83 to 89 in 28c8d0d
will give these keys:
sample_keys(1, 2, c=3)
gives:sample_keys(1, b=2, c=3)
gives:The text was updated successfully, but these errors were encountered: