Devlive 开源社区 本次搜索耗时 1.464 秒,为您找到 139 个相关结果.
  • Tailwind CSS 插件开发和扩展

    插件系统是 Tailwind CSS 的核心特性之一,它允许我们扩展和定制框架的功能。通过开发插件,我们可以添加新的工具类、组件和功能,使 Tailwind CSS 更好地满足项目需求。 插件开发基础 插件结构 const plugin = require ( 'tailwindcss/plugin' ) module . exports...
  • API Models

    228 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...
  • Distributed counters

    225 2025-03-14 《Redisson 3.45.0》
    Id generator Redis or Valkey based Java Id generator RIdGenerator generates unique numbers but not monotonically increased. At first request, batch of id numbers is allocated and...
  • Distributed locks and synchronizers

    221 2025-03-14 《Redisson 3.45.0》
    Lock Redis or Valkey based distributed reentrant Lock object for Java and implements Lock interface. Uses pub/sub channel to notify other threads across all Redisson instances w...
  • Gobblin as a Library

    Using Gobblin as a Library Creating an Embedded Gobblin instance Configuring Embedded Gobblin Running Embedded Gobblin Extending Embedded Gobblin Using Gobblin as a Library ...
  • Commands mapping

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

    201 2025-03-14 《Redisson 3.45.0》
    1. Add dependency Maven <dependency> <groupId> org.redisson </groupId> <artifactId> redisson </artifactId> <version> xVERSIONx </version> </dependency> ...
  • Distributed publish/subscribe

    197 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...
  • Tailwind CSS 按需加载策略

    在大型应用中,合理的按需加载策略可以显著提升应用性能。本节将详细介绍如何在使用 Tailwind CSS 的项目中实现高效的按需加载。 样式按需加载 基础配置 // tailwind.config.js module . exports = { // 配置 JIT 模式 mode : 'jit' , // ...
  • Transactions

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