programming-idioms icon indicating copy to clipboard operation
programming-idioms copied to clipboard

Datastore safe Id gen

Open Deleplace opened this issue 10 years ago • 0 comments

Current new id generation is poor :

datastore.NewQuery("Idiom").Order("-Id").Limit(1)
...
newID := maxIdiom.Id + 1

Replace it with correct, thread-safe id increment (or arbitrary id allocation). Same applies for a new Idiom and for a new Impl.

Deleplace avatar Aug 21 '15 11:08 Deleplace