AO ID are integers, as shown.
Out of curiosity, what happens to AO if you exhaust its postive ID range of 2,147,483,647, does it rollover and start using negatives or does the sky fall? Sure I could look at the source, but just maybe others might find this interesting?
The short answer is: I don't know. Good question. Maybe we could warn or do some check of some sort… What were you thinking should happen?
Do you have a concrete use case where you fear you might reach this limit?
In any case, nothing prevents you from using Long for you entity IDs. For example I know the GreenHopper developers defined their own Entity parent class as:
public interface Entity extends RawEntity<Long> { @AutoIncrement @NotNull @PrimaryKey("ID") public long getID(); }
This should give you some room up to 9,223,372,036,854,775,807 ;-)
Note that AO is capable of migrating int IDs to long IDs if necessary, however I would advise choosing the type that will suit your expected usage as soon as possible. Of course.
Hmm, yes, that seems like a good thing, thanks for the pointer. Given JIRA uses long types, wouldnt it be consistent to default AO objects to use them for ID's by default too, ints just stand out...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, int has been the default ID type for AO for a little while, so I didn't want to change that. Maybe I should have…
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Kudos to the AO developers if they have code that specifically addresses this situation. Anyway, it's likely that the database would die long before IDs are exhausted ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.