원클릭으로
bypassing-local-cache
Forces reads to go to the server when locally cached data is suspected of being stale
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Forces reads to go to the server when locally cached data is suspected of being stale
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Understand how sources declare operation capabilities via supportedOperations and how SourceList respects them.
FirestoreAdminSource connects google_cloud_firestore for server-side Dart applications to a SourceList.
FirestoreSource seamlessly connects Cloud Firestore streams to a SourceList.
Perform untyped Firestore document merges using the raw method on Firestore sources.
Cached data is mapped uniquely per request hash (RequestDetails with specific filter and pagination), supporting a powerful request-based caching behavior.
The SourceList class manages the delegation of read/write attempts to various configured Sources, with a read-thru cache system prioritizing local Sources.
| name | bypassing-local-cache |
| description | Forces reads to go to the server when locally cached data is suspected of being stale |
| metadata | {"last_modified":"Sat, 18 Apr 2026 1:52:50 GMT"} |
By default, previously read data is immediately available from local sources and is returned without checking the remote source. This is usually the desired behavior, but sometimes you may want to force data to be fetched from the remote source. This can be done by setting the requestType to RequestType.refresh.
final users = await userRepository.getItems(
RequestDetails(
requestType: RequestType.refresh,
),
);
This request will not ask any local sources for data, but will still cache any remote data that is returned.