We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ac3b8c commit 71b5db0Copy full SHA for 71b5db0
2 files changed
.travis.yml
@@ -1 +1 @@
1
-language: java
+language: kotlin
redis/src/main/java/info/xiaomo/redis/dao/CommonRedisDao.kt
@@ -76,7 +76,7 @@ interface CommonRedisDao {
76
* @param key
77
* @return
78
*/
79
- fun getValue(key: String): String
+ fun getValue(key: String): String?
80
81
/**
82
* 移除缓存
@@ -146,7 +146,7 @@ interface CommonRedisDao {
146
* @param k
147
148
149
- fun getSet(k: String): Set<String>
+ fun getSet(k: String): Set<String>?
150
151
152
* 缓存List
@@ -194,7 +194,7 @@ interface CommonRedisDao {
194
* @param end
195
196
197
- fun getList(k: String, start: Long, end: Long): List<String>
+ fun getList(k: String, start: Long, end: Long): List<String>?
198
199
200
* 获取页码
0 commit comments