module Methods

A collection of methods for interacting with Redis.

Nested Classes and Modules

module Cluster

Methods for managing Redis clusters.

module Connection

Methods for managing Redis connections.

module Counting

Methods for managing Redis HyperLogLogs.

module Generic

Methods for interacting with Redis keys.

module Geospatial

Methods for managing Redis geospatial indexes.

module Hashes

Methods for managing Redis hashes.

module Lists

Methods for managing Redis lists.

module Pubsub

Methods for managing Redis Pub/Sub.

module Scripting

Methods for managing Redis scripting.

module Server

Methods for managing Redis servers.

module Sets

Methods for managing Redis sets.

module SortedSets

Methods for managing Redis sorted sets.

module Streams

Methods for managing Redis streams.

module Strings

Methods for managing Redis strings.

Definitions

def self.included(klass)

Includes all Redis methods into the given class.

Implementation

def self.included(klass)
	klass.include Methods::Generic
	klass.include Methods::Connection
	klass.include Methods::Server
	klass.include Methods::Cluster
	klass.include Methods::Geospatial
	
	klass.include Methods::Counting
	
	klass.include Methods::Hashes
	klass.include Methods::Lists
	klass.include Methods::Scripting
	klass.include Methods::Sets
	klass.include Methods::SortedSets
	klass.include Methods::Strings
	klass.include Methods::Streams
	
	klass.include Methods::Pubsub
end