Devlive 开源社区 本次搜索耗时 0.664 秒,为您找到 107 个相关结果.
  • Getting Started

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

    319 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

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

    📈 今日整体趋势 Top 10 📊 分语言趋势 Top 5 C++ PHP Kotlin Ruby C MDX Go C Dart Java JavaScript Python HTML Rust Vim Script Lua TypeScript Shell Batchfile Dockerfile Nextflo...
  • Common methods

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

    GitHub 趋势日报 (2025年04月25日) 📈 今日整体趋势 Top 10 📊 分语言趋势 Top 5 Go C++ Java MDX C Ruby PHP JavaScript Dart Rust C Kotlin Shell Python TypeScript Vim Script Lua HTML Batc...
  • GitHub 趋势日报 (2025年04月23日)

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

    275 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...
  • Server-Side Scripting

    266 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 ...
  • Data partitioning

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