-
Notifications
You must be signed in to change notification settings - Fork 4
Command Interfaces
Redis supports 400+ commands. These commands are grouped within multiple interfaces.
Type | Stateful | Sync | Async | Reactive |
---|---|---|---|---|
Disque | ✅ | ✅ | ✅ | ✅ |
Legend
- ✅ Available
- ⛔ No/Not applicable
- 🕐 Not yet
The grouping is similar to the Disque command grouping.
All interfaces operate on a Stateful Connection. You can obtain a different API for the same physical connection without the need to create a new connection Call getConnection().sync()
to obtain the sync API or getConnection().async()
(except pooled connections).
This wiki and the README document contains a lot of information, please take your time and read these instructions carefully.
If you run into any trouble, you may start with getting started.
We provide detailed changes for each spinach release.
Be sure to read the CONTRIBUTING guidelines before reporting a new lettuce issue or open a pull request.
If you have any questions about the lettuce usage or want to share some information with the community, please go to one of the following places:
More resources:
- Javadoc
- Build status: Travis CI
- All versions: Maven Central
- Snapshots: Sonatype OSS Repository
Intro
Getting started
Advanced usage
- QueueListener API
- SocketAddress Supplier API
- Client options
- SSL Connections
- Unix Domain Sockets
- Connection Events
- Command Interfaces
- Stateful Connections
Integration and Extension
- Codecs
- CDI Support (future)
- Spring Support (future)
Internals