I am writing an android app giving each client a long user ID through this formula:
long userID = (long) (Math.random() * 2 * Long.MAX_VALUE - Long.MAX_VALUE);
Am I utilizing MAX_VALUE correctly i.e. taking advantage of every possible long value?
What are my chances of having two duplicate user IDs with 10k, 100k or 1m users? How could I calculate this?
2^34values. That's why it is better to use UUID (128bit) as recommended below. Alternatively you can use conflict-free (no duplicates guaranteed) long IDs e.g. Twitter Flake Id generator. – Tom Feb 6 at 12:14