써먹는 웹개발
[mybatis] mysql 데이터가 화면으로 넘어오는 시간개선 본문
728x90
반응형
<select id="selectList" resultMap="String" fetchSize="1000">
SELECT * FROM board
</select>
fetchSize 미 입력시 (기본 값) 10
fetchSize 가 10 이면 5000건을 조회하면 실제 db에서 500번을 조회
fetchSize 가 1000 이면 5번만 조회
MYbatis fetchSize 설정 :: 또리야 개발하자 - https://ddoriya.tistory.com/entry/MYbatis-fetchSize-%EC%84%A4%EC%A0%95
728x90
반응형
'Server > Mybatis (.xml)' 카테고리의 다른 글
[Mybatis] Map을 리턴할때 컬럼 순서에 맞게 리턴받는 방법 (0) | 2023.09.06 |
---|---|
[Mybatis] Could not set parameter at position 1 (values was 10) (0) | 2022.11.23 |
[Mybatis] View 연동해서 Mybatis in절 사용하는 방법 (ex. '1,2,3') (0) | 2021.06.22 |
[Mybatis] CDATA를 쓰는 경우 (0) | 2020.06.25 |
[Mybatis] Array 변수(파라미터)의 null 체크하는 2가지 방법 (1) | 2020.03.20 |
Comments