Dolphin-PC / Commerce

전자기기 구매 E-Commerce프로젝트
https://banana-shop-chi.vercel.app
0 stars 0 forks source link

데이터 PreFethcing 적용하기 #20

Closed Dolphin-PC closed 2 months ago

Dolphin-PC commented 2 months ago
Dolphin-PC commented 2 months ago

prefetching 방법

  1. queryClient.prefetchQuery
  2. usePrefetchQuery

사용법

  1. queryClient.prefetchQuery
    • queryClient를 사용하므로, 상솽에 따라 useEffect, if문 안에서 처리할 수 있다.
  2. usePrefetchQuery
    • hooks문법으로 인해, 최상단에서만 사용할 수 있다. ==> 우리는 컴포넌트에 MouseEnter가 되었을 때, prefetch를 하고 싶으니 queryClient.prefetchQuery 방법 사용
Dolphin-PC commented 2 months ago

🤔 staleTime을 어떻게 해야 할까?

📌 배경


방법 1. 상품 데이터 분리 (수량 데이터만 분리)

Dolphin-PC commented 2 months ago

🎉 해결


PreFetch 직후

image

PreFetch한 상품상세 페이지 진입

image
Dolphin-PC commented 2 months ago

📏 성능 측정

prefetch 적용 전

prefetch적용전

prefetch 적용 후

prefetch적용후