module Methods
A collection of methods for interacting with Redis.
Nested Classes and Modules
module ClusterMethods for managing Redis clusters.
module ConnectionMethods for managing Redis connections.
module CountingMethods for managing Redis HyperLogLogs.
module GenericMethods for interacting with Redis keys.
module GeospatialMethods for managing Redis geospatial indexes.
module HashesMethods for managing Redis hashes.
module ListsMethods for managing Redis lists.
module PubsubMethods for managing Redis Pub/Sub.
module ScriptingMethods for managing Redis scripting.
module ServerMethods for managing Redis servers.
module SetsMethods for managing Redis sets.
module SortedSetsMethods for managing Redis sorted sets.
module StreamsMethods for managing Redis streams.
module StringsMethods 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