class Redis

def getrange(key, start, stop)

Get a substring of the string stored at a key.
def getrange(key, start, stop)
  synchronize do
    @client.call(:getrange, key, start, stop)
  end
end