the-blue-alliance / the-blue-alliance-ios

An iOS app for accessing information about the FIRST Robotics Competition.
MIT License
76 stars 23 forks source link

Use batch inserts for Search indexer #893

Open ZachOrr opened 4 years ago

ZachOrr commented 4 years ago

The Search indexer is slow when inserting teams due to inserting thousands of teams at a time, one at a time. We should look to use NSBatchInsertRequest for inserting a large number of teams and NSBatchDeleteRequest when deleting a large number of teams.

Work for this has begun at zorr/batch-search