Moving forwards, am I going to have a problem at some point if I store Tweet IDs from the Twitter API as an unsigned BIGINT in MySQL?
Am I better off using a CHAR(25) or something? The Tweet IDs are only going to get bigger and bigger over time.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
an unsigned bigint can hold a value in the range of 0 to 18446744073709551615 (a really big number)
if there are say approx. 52 billion tweets per year then:
so I think you’d be safe 😛