بنقرة واحدة
clearing-source-caches
Ejecting all data from local sources is as simple as calling .clear()
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Ejecting all data from local sources is as simple as calling .clear()
التثبيت باستخدام 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 | clearing-source-caches |
| description | Ejecting all data from local sources is as simple as calling .clear() |
| metadata | {"last_modified":"Sat, 18 Apr 2026 1:52:50 GMT"} |
To clear all data from local sources, simply call .clear() on the Repository, which recursively calls clear all the way down.
await userRepository.clear();
To clear targeted data for a specific request, call clearForRequest with the RequestDetails object.
await userRepository.clearForRequest(details);