You should not need to do anything at all. It may happen that some operations, typically updating a field in the database for many books, one at a time, becomes slower, in which case you should re-write it to use the new api. Other than that, you should not need to do anything, and that only if you or your users notice some slowness. Basically, where you had:
Code:
for book_id in book_ids:
db.set_something(book_id, value)
replace it with
Code:
db.new_api.set_field(something, {book_id:value for book_id in book_ids})