Devlive 开源社区 本次搜索耗时 0.993 秒,为您找到 95 个相关结果.
  • API Models

    266 2025-03-14 《Redisson 3.45.0》
    Synchronous and Asynchronous API Redisson instances are fully thread-safe. Synchronous and Asynchronous API could be reached via RedissonClient interface. Most Redisson objects...
  • Standalone Redisson node

    262 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

    261 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...
  • GitHub 趋势日报 (2025年04月10日)

    📈 今日整体趋势 Top 10 📊 分语言趋势 Top 5 Go C++ Ruby Jupyter Notebook Kotlin Java C PHP Shell MDX Rust C TypeScript HTML Lua JavaScript Vim Script Python Batchfile Markdow...
  • Commands mapping

    247 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 ...
  • Distributed publish/subscribe

    241 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...
  • Getting Started

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

    232 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...
  • Common methods

    227 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

    209 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 ...