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
Allow users to provide a function that maps arguments to some sort of hashable key. This will enable people to use the Memorize decorator with functions that accept non-hashable arguments. Target API:
One caveat: I think we will need to save a hash of the function to the cache as well, so that when myFunction is called again we can verify that the getHash function has not changed.
Based on discussion with @JoranDox in #3
Allow users to provide a function that maps arguments to some sort of hashable key. This will enable people to use the
Memorize
decorator with functions that accept non-hashable arguments. Target API:The text was updated successfully, but these errors were encountered: