Module: Protocol::Redis::Cluster::Methods

Defined in:
lib/protocol/redis/cluster/methods.rb,
lib/protocol/redis/cluster/methods/pubsub.rb,
lib/protocol/redis/cluster/methods/generic.rb,
lib/protocol/redis/cluster/methods/streams.rb,
lib/protocol/redis/cluster/methods/strings.rb,
lib/protocol/redis/cluster/methods/scripting.rb

Overview

A collection of methods for interacting with Redis in cluster mode.

Defined Under Namespace

Modules: Generic, Pubsub, Scripting, Streams, Strings

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object

Includes all Redis methods into the given class.



18
19
20
21
22
23
# File 'lib/protocol/redis/cluster/methods.rb', line 18

def self.included(klass)
	klass.include Methods::Generic
	klass.include Methods::Pubsub
	klass.include Methods::Streams
	klass.include Methods::Strings
end