leopard-memdb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.leopard</groupId>
<artifactId>leopard-memdb</artifactId>
<version>0.9.12</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.leopard</groupId> <artifactId>leopard-data-parent</artifactId> <version>0.9.12</version> </parent> <artifactId>leopard-memdb</artifactId> <name>Leopard-Memdb</name> <description>内存KV数据库、PubSub。内存KV数据库基于Java Map实现,支持单JVM、跨JVM同步。PubSub基于Redis实现,非常方便实现当前项目所有JVM通讯。</description> <dependencies> <!-- pubsub使用 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <scope>provided</scope> </dependency> <!-- 序列化用到json --> <dependency> <groupId>io.leopard</groupId> <artifactId>leopard-redis</artifactId> <version>0.9.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.leopard</groupId> <artifactId>leopard-json</artifactId> <version>0.9.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>