Sha256: 4c68f26b02f46b98f880f80145486e75fd3950a2864c467abcd8f7cc9d62ec13

Contents?: true

Size: 930 Bytes

Versions: 4

Compression:

Stored size: 930 Bytes

Contents

# encoding: utf-8

module Backup
  module Configuration
    module Database
      class Redis < Base
        class << self

          ##
          # Name of and path to the database that needs to get dumped
          attr_accessor :name, :path

          ##
          # Credentials for the specified database
          attr_accessor :password

          ##
          # Determines whether Backup should invoke the SAVE command through
          # the 'redis-cli' utility to persist the most recent data before
          # copying over the dump file
          attr_accessor :invoke_save

          ##
          # Connectivity options
          attr_accessor :host, :port, :socket

          ##
          # Additional "redis-cli" options
          attr_accessor :additional_options

          ##
          # Path to the redis-cli utility (optional)
          attr_accessor :redis_cli_utility

        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
backup_checksum-3.0.23 lib/backup/configuration/database/redis.rb
backup-3.0.23 lib/backup/configuration/database/redis.rb
backup-3.0.22 lib/backup/configuration/database/redis.rb
backup-3.0.21 lib/backup/configuration/database/redis.rb