ContinuumIO / cyberpandas

IP Address dtype and block for pandas
BSD 3-Clause "New" or "Revised" License
104 stars 23 forks source link

Document "slow" methods #23

Open TomAugspurger opened 6 years ago

TomAugspurger commented 6 years ago

For development expediency many methods are implemented by converting the IPArray to an ndarray of ipaddress objects (slow), the operation is performed (slow) and the IPArray is reconstructed.

For most of these, we could operate directly on the IPArray, which should be much faster.

Ideally, everything would be done directly on the IPArray. As a stop-gap, we should document which methods are slow, and encourage users to reach out when that becomes a bottleneck.