The gearmand job server written in Perl (current production server from Danga):
mysql> SELECT length(gman_do("reverse", repeat('x',10000000))) AS test; +----------+ | test | +----------+ | 10000000 | +----------+ 1 row in set (49.08 sec)
The new gearmand job server written in C:
mysql> SELECT length(gman_do("reverse", repeat('x',10000000))) AS test; +----------+ | test | +----------+ | 10000000 | +----------+ 1 row in set (0.30 sec)
Mmm, efficiency. Oh, and are those some new MySQL UDFs? Much more coming soon…