in reply to Re^2: PostgreSQL cursors with Perl.
in thread PostgreSQL cursors with Perl.

I often hear people say that MySQL is "slow". Which often translates to sub-optimized or under-powered. Consider the following real-world example which shows that MySQL works fine with enormous data sets (Yes that almost 1 billion rows in a single table having 41 columns, 1 primary key, 1 unique key, 9 non-unique keys):
mysql> select count(*) from t_prod; +-----------+ | count(*) | +-----------+ | 952174654 | +-----------+ 1 row in set (0.00 sec) # ls -lh /var/lib/mysql/prod | grep t_prod -rw-rw---- 1 mysql mysql 11K Jun 4 2007 t_prod.frm -rw-rw---- 1 mysql mysql 222G Apr 18 07:35 t_prod.MYD -rw-rw---- 1 mysql mysql 102G Apr 18 07:35 t_prod.MYI
And I can tell up operations on that table are very fast as long as the indices are used properly.

Maintenance, however, is a nightmare. For example:

--
When you earnestly believe you can compensate for a lack of skill by doubling your efforts, there's no end to what you can't do. [1]