Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using TopLink as my ORM and MySQL as the DB.

I traded my auto-increment primary keys for GUIDs for one of my tables (alright, not quite: I'm actually using a random 64 bit integer, but that's good enough for my needs).

Anyway, now queries, which don't even use the key, are taking much longer.

What can I do?

share|improve this question
You changed your guaranteed to be unique auto-incremented primary key to a 64-bit random value that will produce duplicates? Why? – some Dec 6 '08 at 2:10
well... to take advantage of the benefits that GUIDs offer. and in my case, if a duplicate occurs, the application will just try again. – carrier Dec 6 '08 at 2:27
This might be of interest: mysqlperformanceblog.com/2007/03/13/to-uuid-or-not-to-uuid – some Dec 6 '08 at 3:34

4 Answers

If your table is indexed by the fields your are querying by. content of the key shouldn't have any noticeable performance impact. They maybe something else there .

share|improve this answer
i have a field that represents the creationDate. how can i force my table to be index accordingly? – carrier Dec 6 '08 at 2:28
i think you are right, there must be something else. – carrier Dec 6 '08 at 18:01

Make sure the key column really is the PRIMARY KEY and thus the clustered (physical) index.

Make sure you have indexes that hit your common queries.


Random integer? You realize there's a chance of hitting the same pri key?

share|improve this answer
Lets hope that he doesn't have a bad PRNG and accidentally get the same seed, so he has to test all keys over and over... – some Dec 6 '08 at 2:27
primary key is clustered only if he's using innodb. – le dorfier Dec 6 '08 at 4:08

If you're using innodb tables in MySQL all rows are referred to by primary key so if you're using a secondary key performance will suffer.

share|improve this answer

i have a field that represents the creationDate. how can i force my table to be index accordingly?

create index Table_creationDate on Table(creationDate);
share|improve this answer
What do you mean by "force my table to index"? That's not a database concept I'm familiar with. – le dorfier Dec 6 '08 at 4:09
i guess i just meant create an index what Frank Krueger answered was helpful – carrier Dec 6 '08 at 18:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.