|
|
|
|
|
by gruez
409 days ago
|
|
>Use bigint, never UUID. UUIDs are massive (2x a bigint) and now your DBMS has to copy that enormous value to every side of a relation. "enormous value" = 128 bits (compared to 64 bits) In the worst case this causes your m2m table to double, but I doubt this has a significant impact on the overall size of the DB. |
|