<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>top.binfast</groupId>
        <artifactId>common</artifactId>
        <version>1.3.3</version>
    </parent>

    <artifactId>common-redis</artifactId>
    <version>1.3.3</version>
    <packaging>jar</packaging>
    <name>common-redis</name>
    <description>common-redis</description>

    <dependencies>
        <dependency>
            <groupId>top.binfast</groupId>
            <artifactId>common-core</artifactId>
        </dependency>
        <!-- 使用redisson集成分布式锁等 -->
        <dependency>
            <groupId>org.redisson</groupId>
            <artifactId>redisson-spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>lock4j-redisson-spring-boot-starter</artifactId>
        </dependency>

        <!-- redis序列化替代方案 比json快无数的跨语言二进制序列化 -->
        <dependency>
            <groupId>org.apache.fory</groupId>
            <artifactId>fory-core</artifactId>
            <version>0.13.1</version>
        </dependency>
    </dependencies>
</project>
