# File lib/memcache.rb, line 203 def incr(key, amount = 1) key = key.to_s backup.incr(key, amount) if backup server(key).incr(key, amount) end