I'm building an client/server-app where I want to sync data. I'm thinking about including the largest key from the local client database in the query so the server can fetch all entities added after that entity (with key > largest_local_key).

  1. Can I be sure that the Google App Engine always increase the ID of new entities?
  2. Is that a good way to implement synchronization?
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

No, IDs do not increase monotonically.

Consider synchronizing based on a create/update timestamp.

link|improve this answer
Isn't it risky to synchronize based on timestamps? When data is added on the client, they might not have synched times? And sometimes new objects are longer back in the past because it was added on a client a long time ago and then recently synched? – thejaz Aug 9 '11 at 20:11
Only the server would generate or care about timestamps. The client would check for updates using a query cursor. – Drew Sears Aug 9 '11 at 21:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.