일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- app completeness
- youtube_player_flutter
- app store connect guideline
- AI
- infinity or nan toint
- guideline 1.5
- 에러
- permissiondeniedexception
- dart sdk version upgrade
- information needed
- undefined name
- appstore connect guideline
- 채팅 메시지 정렬
- exception
- appstroe connect guideline
- guideline 4.3(a)
- flutter doctor -v
- tflite_flutter
- flutter_secure_storage
- app stroe connect guideline
- buildcontext
- GetX
- flutter_dotenv
- exception caught by image resource service
- Flutter
- 플러터
- withopacity
- providernotfoundexception
- pub.dev
- .dio
Archives
- Today
- Total
목록Throttle (1)
min_chan님의 블로그

Throttle을 사용한 이유버튼과 같은 이벤트를 통해 사용자와 서버 간의 빈번한 데이터 통신은 많이 발생한다.만약 동일한 이벤트에서 과도한 API 호출이 발생하는 경우, 불필요한 네트워크 트래픽 증가와 서버 과부하를 초래할 수 있다.Throttle 기법은 특정 시간 간격 동안 한 번의 작업(예: API 호출)만 실행되도록 제한하는 기법으로 동일한 작업이 연속적으로 호출되지 않도록 하여 서버와 네트워크의 부하를 줄이기 위해 사용하였다.Throttleclass Throttle { bool _isThrottled = false; void call(Future Function() action, Duration duration) async { if (_isThrottled) return; _isT..
Flutter
2025. 1. 21. 10:35