# File lib/ohm.rb, line 291
    def delete(model)

      # LREM key 0 <id> means remove all elements matching <id>
      # @see http://redis.io/commands/lrem
      key.call("LREM", 0, model.id)
    end