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
OOPS relies on caching to optimize performance, so code to implement this occurs throughout OOPS, several instances of which are identical. A cache module would consolidate this functionality into one place and make it easier to maintain and test.
The benefit of this consoldidation is illustrated the frames module where several classes use identical code to implement caching. In the upgrade from python2 to python3 (where the .keys() and .values() methods work differently), not all of those modules were updated and the unit tests did not catch the error.
The text was updated successfully, but these errors were encountered:
OOPS relies on caching to optimize performance, so code to implement this occurs throughout OOPS, several instances of which are identical. A cache module would consolidate this functionality into one place and make it easier to maintain and test.
The benefit of this consoldidation is illustrated the frames module where several classes use identical code to implement caching. In the upgrade from python2 to python3 (where the .keys() and .values() methods work differently), not all of those modules were updated and the unit tests did not catch the error.
The text was updated successfully, but these errors were encountered: