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
We are using an exponential backoff at the moment to improve performance. We should evaluate the use of a WeakSet. A know problem is the slowdown of the DataFrame constructor when using a WeakSet for zero copy ops.
Feature Description
Use WeakSet
Alternative Solutions
Current implementation
Additional Context
No response
The text was updated successfully, but these errors were encountered:
One big problem is that index is not hashable (weakset requires the objects to be hashable).
This solution is slower but I still like it because it basically eliminates the need for a wrapper like BlockValuesRefs. Here is the benchmark for a simple implementation replacing the current list method with weakset (I used id() for the hash function):
Feature Type
Adding new functionality to pandas
Changing existing functionality in pandas
Removing existing functionality in pandas
Problem Description
We are using an exponential backoff at the moment to improve performance. We should evaluate the use of a WeakSet. A know problem is the slowdown of the DataFrame constructor when using a WeakSet for zero copy ops.
Feature Description
Use WeakSet
Alternative Solutions
Current implementation
Additional Context
No response
The text was updated successfully, but these errors were encountered: