Skip to content

Operations ​

The Mule Lettuce Redis Connector provides operations in two categories:

  • Category A — Redis Command Mirrors: Operations that map directly to a single Redis command. These are reference-style: if you know the Redis command, the operation works the same way.
  • Category B — Value-Add Features: Operations that go beyond a single command, providing automation or capabilities not available in raw Redis.

Category A: Redis Command Operations ​

Server ​

OperationRedis CommandPage
PINGPINGServer

Key / Value ​

OperationRedis CommandPage
APPENDAPPENDKey / Value
COPYCOPYKey / Value
DECRDECRKey / Value
DELDELKey / Value
EXPIREEXPIREKey / Value
GETGETKey / Value
GETDELGETDELKey / Value
GETEXGETEXKey / Value
GETRANGEGETRANGEKey / Value
GETSETGETSETKey / Value
INCRINCRKey / Value
MGETMGETKey / Value
MSETMSETKey / Value
PERSISTPERSISTKey / Value
PEXPIREPEXPIREKey / Value
PTTLPTTLKey / Value
SCANSCANKey / Value
SETSETKey / Value
TOUCHTOUCHKey / Value
TTLTTLKey / Value

Hash ​

OperationRedis CommandPage
HEXISTSHEXISTSHash
HGETHGETHash
HGETALLHGETALLHash
HINCRBYHINCRBYHash
HLENHLENHash
HMGETHMGETHash
HSCANHSCANHash
HSETHSETHash

List ​

OperationRedis CommandPage
BLMOVEBLMOVEList
BLPOPBLPOPList
BRPOPBRPOPList
LMOVELMOVEList
LPOPLPOPList
LPUSHLPUSHList
LSETLSETList
RPOPRPOPList
RPUSHRPUSHList

Set ​

OperationRedis CommandPage
SADDSADDSet
SCARDSCARDSet
SDIFFSDIFFSet
SISMEMBERSISMEMBERSet
SMEMBERSSMEMBERSSet
SMISMEMBERSMISMEMBERSet
SPOPSPOPSet
SRANDMEMBERSRANDMEMBERSet
SREMSREMSet
SSCANSSCANSet

Sorted Set ​

OperationRedis CommandPage
ZADDZADDSorted Set
ZINCRBYZINCRBYSorted Set
ZRANKZRANKSorted Set
ZSCANZSCANSorted Set
ZSCOREZSCORESorted Set

Geospatial ​

OperationRedis CommandPage
GEOADDGEOADDGeospatial
GEODISTGEODISTGeospatial
GEOPOSGEOPOSGeospatial
GEOSEARCHGEOSEARCHGeospatial

Stream ​

OperationRedis CommandPage
XACKXACKStream
XADDXADDStream
XDELXDELStream
XGROUP CREATEXGROUP CREATEStream
XGROUP DESTROYXGROUP DESTROYStream
XINFO GROUPSXINFO GROUPSStream
XRANGEXRANGEStream
XREADXREADStream
XREADGROUPXREADGROUPStream
XTRIMXTRIMStream

Channel ​

OperationRedis CommandPage
PUBLISHPUBLISHChannel

Category B: Value-Add Operations ​

OperationDescriptionPage
Send CommandExecute any Redis command dynamically by name. Use for commands not yet available as dedicated operations.Send Command
Search KeysStream all keys matching a pattern via automated SCAN cursor iterationSearch Operations
Search Hash FieldsStream all fields in a hash via automated HSCAN cursor iterationSearch Operations
Search Set MembersStream all members in a set via automated SSCAN cursor iterationSearch Operations
Search Sorted Set MembersStream all members and scores in a sorted set via automated ZSCAN cursor iterationSearch Operations

Sources (Event Listeners) ​

Sources are not operations — they are Mule event listeners that trigger flows when Redis delivers a message. See the Sources page for SUBSCRIBE and PSUBSCRIBE.

Released under the MIT License.