diff --git a/redisson-spring-data/pom.xml b/redisson-spring-data/pom.xml
index 3a8f37f37..0bd22f3e9 100644
--- a/redisson-spring-data/pom.xml
+++ b/redisson-spring-data/pom.xml
@@ -25,6 +25,7 @@
redisson-spring-data-25
redisson-spring-data-26
redisson-spring-data-27
+ redisson-spring-data-30
diff --git a/redisson-spring-data/redisson-spring-data-30/pom.xml b/redisson-spring-data/redisson-spring-data-30/pom.xml
new file mode 100644
index 000000000..ee3318582
--- /dev/null
+++ b/redisson-spring-data/redisson-spring-data-30/pom.xml
@@ -0,0 +1,76 @@
+
+ 4.0.0
+
+
+ org.redisson
+ redisson-spring-data
+ 3.18.1-SNAPSHOT
+ ../
+
+
+ redisson-spring-data-30
+ jar
+
+ Redisson/Spring Data Redis v3.0.x integration
+
+
+
+ org.springframework.data
+ spring-data-redis
+ 3.0.0
+
+
+
+
+
+
+ maven-jar-plugin
+ 3.1.2
+
+
+
+ ${maven.build.timestamp}
+ redisson.spring.data27
+
+
+
+
+
+
+ com.mycila
+ license-maven-plugin
+ 3.0
+
+ ${basedir}
+ ${basedir}/../../header.txt
+ false
+ true
+ false
+
+ src/main/java/org/redisson/
+
+
+ target/**
+
+ true
+
+ JAVADOC_STYLE
+
+ true
+ true
+ UTF-8
+
+
+
+
+ check
+
+
+
+
+
+
+
+
+
+
diff --git a/redisson-spring-data/redisson-spring-data-30/src/main/java/org/redisson/spring/data/connection/BinaryConvertor.java b/redisson-spring-data/redisson-spring-data-30/src/main/java/org/redisson/spring/data/connection/BinaryConvertor.java
new file mode 100644
index 000000000..8561b2874
--- /dev/null
+++ b/redisson-spring-data/redisson-spring-data-30/src/main/java/org/redisson/spring/data/connection/BinaryConvertor.java
@@ -0,0 +1,37 @@
+/**
+ * Copyright (c) 2013-2022 Nikita Koksharov
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.redisson.spring.data.connection;
+
+import org.redisson.client.protocol.convertor.Convertor;
+
+import io.netty.util.CharsetUtil;
+
+/**
+ *
+ * @author Nikita Koksharov
+ *
+ */
+public class BinaryConvertor implements Convertor