Is it guaranteed that numeric auto-incremented ID of new entity always bigger than existing IDs?
问题 Is it guaranteed that auto-incremented ID of new entity always bigger than existing IDs ? Basically I want to periodically dump entity (e.g. Comment) in background task into big blobs as they get created by customers. So if there are 100 entities right now I'll store them in blob and create helper entity for this blob like class BlobRange { long fromId; // Comment.id long toId; // Comment.id String blobKey; } Next time background task would find biggest BlobRange.toId and would fetch new