Devlive 开源社区 本次搜索耗时 1.142 秒,为您找到 46 个相关结果.
  • Standalone Redisson node

    304 2025-03-15 《Redisson 3.45.0》
    Overview Redisson offers ability to run as standalone node and participate in distributed computing. Such Nodes are used to run MapReduce , ExecutorService , ScheduledExecutorServ...
  • Data serialization

    292 2025-03-14 《Redisson 3.45.0》
    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...
  • Distributed publish/subscribe

    285 2025-03-14 《Redisson 3.45.0》
    Topic Java RTopic object implements Publish / Subscribe mechanism based on Redis Pub/Sub or Valkey Pub/Sub . It allows to subscribe on events published with multiple instances o...
  • Commands mapping

    282 2025-03-15 《Redisson 3.45.0》
    Redis or Valkey command Sync / Async APIRedisson.create(config) Reactive APIredisson.reactive() RxJava3 APIredisson.rxJava() AUTH Config.setPassword() - - APPEND ...
  • Transactions

    272 2025-03-15 《Redisson 3.45.0》
    Transactions management RMap , RMapCache , RLocalCachedMap , RSet , RSetCache and RBucket Redisson objects may participant in Transaction with ACID properties. It uses locks for...
  • Getting Started

    269 2025-03-14 《Redisson 3.45.0》
    1. Add dependency Maven <dependency> <groupId> org.redisson </groupId> <artifactId> redisson </artifactId> <version> xVERSIONx </version> </dependency> ...
  • Common methods

    261 2025-03-14 《Redisson 3.45.0》
    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...
  • Server-Side Scripting

    238 2025-03-15 《Redisson 3.45.0》
    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 ...
  • Pipelining

    238 2025-03-15 《Redisson 3.45.0》
    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...
  • Data partitioning

    228 2025-03-14 《Redisson 3.45.0》
    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...