PERF: use fastpath=True in Index methods (delete/drop/insert/etc)? #6933
Labels
Indexing
Related to indexing on series/frames, not to indexes themselves
Performance
Memory or execution speed performance
Milestone
Been hit by this when optimizing index-oblivious Blocks. In my case,
was still a lot faster then than
index.delete(deleted_loc)
.It appears, that delete doesn't add
fastpath=True
to ctor and that triggers type inference for string (object) indices. There seems to be plenty of methods that do it the same way and hence are slow too, can we do something about that?The text was updated successfully, but these errors were encountered: