Hello everyone i was wondering if anyone could me with this.
Basically I want to scale my MySQL databases, and to prepare for large amounts of data in my databases (just 1 for now) I need to generate GUID's for rows instead of auto-increment numbers, and I want to know if there can be any collisions in MySQL. I want to know specifically if MySQL handles 1 query at a time, and not multiple at the same time. For example if I'm inserting a new row, I want to know if it's safe to generate a UUID in PHP and then do a
query to my databases and if there are no rows, assign the new UUID to the newly inserted row, can there be any conflicts or issues here?
Thanks in advance
Paint
**UPDATE**
Queue:
Currently Trying queues. As the data will be spread across multiple databases I will be using a queue table to check the value before it is placed in.
Basically I want to scale my MySQL databases, and to prepare for large amounts of data in my databases (just 1 for now) I need to generate GUID's for rows instead of auto-increment numbers, and I want to know if there can be any collisions in MySQL. I want to know specifically if MySQL handles 1 query at a time, and not multiple at the same time. For example if I'm inserting a new row, I want to know if it's safe to generate a UUID in PHP and then do a
Code:
SELECT * FROM
Thanks in advance
Paint
**UPDATE**
Queue:
Currently Trying queues. As the data will be spread across multiple databases I will be using a queue table to check the value before it is placed in.
Last edited:
