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