cursor-iterator
cursor-iterator copied to clipboard
为啥不能(start+1,limit)
List<Entity> entities = dao.getByCursor(start, limit + 1); return entities.isEmpty() ? entities : entities.subList(1, entities.size()); 为啥不能(start+1,limit)? 求大佬解释一下; 是考虑Next-key Lock原因吗?