|
|
|
|
|
by eknuth
5351 days ago
|
|
I would never have thought that MySQL could handle massive databases, but it honestly isn't that bad. You just can't expect it to behave like a normal database. I had to use mysql to build a 200 million row 200gb database. The trick was using myisam and indexing it as little as possible (just the pk). I used sphinx to handle full text searching. Searching and retrieving records was very fast. |
|