在我当地的redis
lrange tmpList range 0 10
"a"
"b"
我的测试
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import java.util.List;
@SpringBootTest
public class RedisTest {
@Autowired
RedisTemplate redisTemplate;
@Test
void showRedisTemplate() {
List<String> strings = redisTemplate.opsForList().range("tmpList", 0, 10);
System.out.println(strings.get(0));
}
}
它显示java.lang.indexoutofboundsexception:索引:0,大小:0
我的redis是5.05
暂无答案!
目前还没有任何答案,快来回答吧!