If I'm using an arcpy.da.UpdateCursor to search for an ObjectID and delete the entry/row, is it possible to walk the cursor backwards for sake of speed?
Knowing that my feature has recently been created and would be near the last index, would the cursor be faster with a for loop going backwards (if such a thing) and a break statement after the deletion?
Or is the cursor set up more like a set, and unordered by OID?
Cheers