Ben bir Android uygulaması üzerinde çalışıyorum ve ben bir ikilem var. Ben nesneleri bir listesi var. Ben bir veritabanı ile bu nesnelerin her güncelleme var. Ben 2 yöntem vardır:
Method 1: I can loop through the Objects. For each object I can connect to the server, update it, and then move on to the next Object, and so forth.
Method 2: I can store the Objects in a list, send the whole list to the server, update it on the server side, then return a list of updated objects.
Benim sorular şunlardır:
- Hangi yöntem daha hızlıdır?
- Hangi yöntem telefonun pil üzerinde daha kolaydır?
Bu arada, Yöntem 1 me :) kodlamak için daha kolaydır. Teşekkür ederim.