MySQL and ERROR 1114 (HY000): The table TABLE is full

Recently I did some site maintenance and had to dump MySQL database and upload it again. I was surprised when during loading data back to database process have stopped with error: ERROR 1114 (HY000) at line 1052: The table ‘searches’ is full It was MySQL 5.0, without cluster configuration. Google lead me to answers related …

Test benchmark – useful gem for Rails tests

Doing TDD You need to know which tests are making whole suite slower. If time used by rake test becomes too long, You may be tempted to skip running tests… Waiting for them to complete becomes suddenly burden on Your way to next task. So, when You need to optimize Your test suite, test_benchmark is …