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
@shaoyucheng used cachier directly in his business code, and found it was not working. He then set up some test code to verify, and it worked well as expected. He finally found the key point was his business code was running through importlib module and the underlying framework codes generated a uuid for every module imported at every running time which disturbed the unique module name obtained by cachier.
It's a point worthy of attention if your running mechanism is similar to his.
It might be worthwhile supporting this functionality.
The text was updated successfully, but these errors were encountered:
@shaoyucheng used cachier directly in his business code, and found it was not working. He then set up some test code to verify, and it worked well as expected. He finally found the key point was his business code was running through importlib module and the underlying framework codes generated a uuid for every module imported at every running time which disturbed the unique module name obtained by cachier.
The text was updated successfully, but these errors were encountered: