Skip to content

MuleSoft-Forge/mule-lettuce-redis-connector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mule Lettuce Redis Connector

Maven Central

A low level connector providing mule applications the ability to use redis commands directly.

The intention of this connector is to fully support all documented redis commands.

Installation

Add this dependency to your application pom.xml

<groupId>cloud.anypoint</groupId>
<artifactId>mule-lettuce-redis-connector</artifactId>
<version>0.1.24</version>
<classifier>mule-plugin</classifier>

Features

Dynamic Command

The Send Command operation allows a developer to send any arbitrary command and arguments to the server, and block until the reply is received.

Commands

Server Commands

  • PING

Key Value Commands

  • APPEND
  • COPY
  • DECR
  • DEL
  • EXPIRE
  • GET
  • GETDEL
  • GETEX
  • GETRANGE
  • GETSET
  • INCR
  • MSET
  • PERSIST
  • PEXPIRE
  • PTTL
  • SCAN
  • SET
  • TOUCH
  • TTL

Hash Commands

  • HEXISTS
  • HGET
  • HGETALL
  • HINCRBY
  • HLEN
  • HMGET
  • HSCAN
  • HSET

List Commands

  • BLPOP
  • BLMOVE
  • BRPOP
  • LMOVE
  • LPOP
  • LPUSH
  • LSET
  • RPUSH
  • RPOP

Set Commands

  • SADD
  • SCARD
  • SDIFF
  • SISMEMBER
  • SMEMBERS
  • SMISMEMBER
  • SPOP
  • SRANDMEMBER
  • SREM
  • SSCAN

Sorted Set Commands

  • ZADD
  • ZINCRBY
  • ZRANK
  • ZSCAN
  • ZSCORE

Geospatial Commands

  • GEOADD
  • GEODIST
  • GEOPOS
  • GEOSEARCH

Channel Commands

  • PUBLISH

Stream Commands

  • XACK
  • XADD
  • XDEL
  • XINFO GROUPS
  • XGROUP CREATE
  • XGROUP DESTROY
  • XRANGE
  • XREAD
  • XREADGROUP
  • XTRIM

Sources

  • SUBSCRIBE
  • PSUBSCRIBE

Search Operations

These high level operations automate the *SCAN commands by internally keeping track of the cursor received in the reply from redis, and sending the scan command with the new cursor value repeatedly until a cursor value of 0 is received.

  • Search keys
  • Search hash fields
  • Search set members
  • Search sorted set members

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages