Excellent question.
For now the solution is basic, based on the 'Limits' section of the admin panel, which allows you to set rate limits per IP address and/or per user.
However if you are running this on a high traffic site I understand this won't be sufficient. If you don't want to wait for more sophisticated anti-spam functionality in future versions, my suggestion would be to look at qa-app-limits.php, and make some customizations.
For example, the qa_limits_remaining() function allows you to block any write action (question, answer, comment, vote), for example based on IP address or user ID. Just return zero from this function to make an error message appear in the user's browser (or scraper...)
Also look at qa_report_write_action() in the same file, which is called every time something is done that writes to the database. You can use that to build an activity profile based on your needs. See the bottom of qa-external-users.php (in qa-external-example) for more information on what the parameters mean.
FYI beta 2, to be released within the week, will add some more actions, so you might want to wait a few days before starting any customization.