Sha256: 83210bd2a33fac8febd1a516d3157dab06a5615e69534e061f5cacb6237706dc

Contents?: true

Size: 732 Bytes

Versions: 6

Compression:

Stored size: 732 Bytes

Contents

module Oxblood
  module Commands
    module Server
      # Remove all keys from the current database
      # @see http://redis.io/commands/flushdb
      #
      # @return [String] should always return 'OK'
      def flushdb
        run(:FLUSHDB)
      end

      # Returns information and statistics about the server in a format that is
      # simple to parse by computers and easy to read by humans
      # @see http://redis.io/commands/info
      #
      # @param [String] section used to select a specific section of information
      #
      # @return [String] raw redis server response as a collection of text lines.
      def info(section = nil)
        section ? run(:INFO, section) : run(:INFO)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
oxblood-0.2.0 lib/oxblood/commands/server.rb
oxblood-0.1.0 lib/oxblood/commands/server.rb
oxblood-0.1.0.dev12 lib/oxblood/commands/server.rb
oxblood-0.1.0.dev11 lib/oxblood/commands/server.rb
oxblood-0.1.0.dev10 lib/oxblood/commands/server.rb
oxblood-0.1.0.dev9 lib/oxblood/commands/server.rb