본문 바로가기

공부한 내용

2022-08-08

적절한 debounce 시간..?

https://ux.stackexchange.com/questions/95336/how-long-should-the-debounce-timeout-be

 

How long should the debounce timeout be?

When using the debounce() operator for form validation how long should the debounce timeout be? I currently have mine set to 400 milliseconds but idk if that is too short.

ux.stackexchange.com

https://stackoverflow.com/questions/42361485/how-long-should-you-debounce-text-input

 

How long should you debounce text input

Lets say we have a simple example as below. <input id="filter" type="text" /> <script> function reload() { // get data via ajax } $('#filter').change($.debounce(250,...

stackoverflow.com

 


react-query

staleTime vs cacheTime

https://react-query-v3.tanstack.com/guides/caching#basic-example

 

Caching Examples | TanStack Query Docs

Please thoroughly read the Important Defaults before reading this guide Basic Example

tanstack.com

 

https://velog.io/@chltjdrhd777/React-Query-%EC%BA%90%EC%8B%B1%EC%97%90-%EB%8C%80%ED%95%9C-%EA%B5%AC%ED%98%84

 

[React-Query] 캐싱에 대한 구현

콘솔상으로 데이터는 업데이트가 되고 있다. 그러나 요청은 날리지 않는다! 이것이 바로 캐싱!asdfasdf사실 나는 이제까지 리엑트 쿼리를 내가 잘 이해하고 있었다고 생각했고, 이번에 기업과제

velog.io

 

https://yrnana.dev/post/2021-04-10-react-query-staletime-cachetime

 

React Query에서 staleTime과 cacheTime의 차이

React Query의 lifecycle과 staleTime / cacheTime의 차이에 대해 이해하기

yrnana.dev