Data serialization is extensively used by Redisson to marshall and unmarshall bytes received or sent over network link with Redis or Valkey server. Many popular codecs are availabl...
Multiple commands can be sent in a batch using RBatch object in a single network call. Command batches allows to reduce the overall execution time of a group of commands. In Redis...
1. Object name Name of Redisson object stored as a key in Redis or Valkey. Example: RMap map = redisson . getMap ( "mymap" ); map . getName (); // = mymap 2. Commo...
LUA Scripting Redisson provides RScript object to execute Lua script. It has atomicity property and used to process data on Redis or Valkey side. Script could be executed in two ...
Redisson uses high-perfomance async and lock-free Java client for Redis or Valkey. It supports both async and sync modes. The most popular use case is to execute a command not supp...
All Redisson Java objects are Redis or Valkey cluster compatible, but their state isn’t scaled/partitioned to multiple master nodes in cluster. Redisson PRO offers data partitioni...