# File lib/redis.rb, line 1086
  def ltrim(key, start, stop)
    synchronize do |client|
      client.call [:ltrim, key, start, stop]
    end
  end