Pagelt;gt; vs Slicelt;gt; when to use which?(页面lt;gt;与切片lt;gt;什么时候用哪个?)
问题描述
我读过 Spring Jpa Data 文档 当您分页"从存储库中生成的动态查询时,有关两种不同类型的对象.
I've read in Spring Jpa Data documentation about two different types of objects when you 'page' your dynamic queries made out of repositories.
页面和切片
Page<User> findByLastname(String lastname, Pageable pageable);
Slice<User> findByLastname(String lastname, Pageable pageable);
所以,我试图找到一些文章或任何东西来讨论两者的主要区别和不同用法,性能如何变化以及排序strong> 影响这两种类型的查询.
So, I've tried to find some articles or anything talking about main difference and different usages of both, how performance changes and how sorting affercts both type of queries.
有没有人拥有这类知识、文章或一些好的信息来源?
Does anyone has this type of knowledge, articles or some good source of information?
推荐答案
Page
扩展 Slice
并通过触发计数查询来了解可用元素和页面的总数.来自 Spring Data JPA 文档一个>:
Page
知道可用元素和页面的总数.它通过基础设施触发计数查询来计算总数来实现这一点.由于根据所使用的商店,这可能会很昂贵,因此 Slice
可以用作返回.Slice
只知道是否有下一个 Slice
可用,这在遍历更大的结果集时可能就足够了.
A
Page
knows about the total number of elements and pages available. It does so by the infrastructure triggering a count query to calculate the overall number. As this might be expensive depending on the store used,Slice
can be used as return instead. ASlice
only knows about whether there’s a nextSlice
available which might be just sufficient when walking through a larger result set.
这篇关于页面<>与切片<>什么时候用哪个?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:页面<>与切片<>什么时候用哪个?
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01