Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

dash_data_layer

dash_data_layer에는 craiglabenz에서 수집한 skills 25개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
25
Stars
8
업데이트
2026-07-22
Forks
2
직업 범위
직업 카테고리 1개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

source-operation-capabilities
소프트웨어 개발자

Understand how sources declare operation capabilities via supportedOperations and how SourceList respects them.

2026-07-22
instantiating-firestore-admin-source
소프트웨어 개발자

FirestoreAdminSource connects google_cloud_firestore for server-side Dart applications to a SourceList.

2026-07-22
instantiating-firestore-source
소프트웨어 개발자

FirestoreSource seamlessly connects Cloud Firestore streams to a SourceList.

2026-07-22
untyped-raw-merges
소프트웨어 개발자

Perform untyped Firestore document merges using the raw method on Firestore sources.

2026-07-22
understanding-request-based-caching
소프트웨어 개발자

Cached data is mapped uniquely per request hash (RequestDetails with specific filter and pagination), supporting a powerful request-based caching behavior.

2026-04-21
understanding-source-list
소프트웨어 개발자

The SourceList class manages the delegation of read/write attempts to various configured Sources, with a read-thru cache system prioritizing local Sources.

2026-04-21
connectivity-awareness
소프트웨어 개발자

ConnectivityPlusStream provides a stream of network statuses based on connectivity_plus so DefaultRetryPolicy can intelligently manage failed Operations.

2026-04-21
authoring-hive-source
소프트웨어 개발자

HiveSource is a LocalSource implementation that writes to Hive boxes.

2026-04-21
authoring-remote-source
소프트웨어 개발자

Remote sources are the API-specific bindings for pkg:data_layer.

2026-04-21
streaming-data
소프트웨어 개발자

Watching realtime data amounts to calling `watch`, `watchByIds`, or `watchList` on a Repository whose SourceList contains a `WatchableSource`.

2026-04-21
authoring-local-source
소프트웨어 개발자

Authoring a new local source allows different storage mechanisms to participate in the data layer caching architecture.

2026-04-20
authoring-proxy-source
소프트웨어 개발자

Proxy Sources offer a build-a-bear type solution for irregular or JSON RPC APIs.

2026-04-20
bypassing-local-cache
소프트웨어 개발자

Forces reads to go to the server when locally cached data is suspected of being stale

2026-04-20
cache-expiry-ttl
소프트웨어 개발자

Automatically invalidate local caches after a specified time to live (ttl).

2026-04-20
clearing-source-caches
소프트웨어 개발자

Ejecting all data from local sources is as simple as calling .clear()

2026-04-20
defining-a-repository
소프트웨어 개발자

Repositories are simple wrappers around SourceLists plus custom business logic.

2026-04-20
defining-bindings
소프트웨어 개발자

Bindings define the serialization and request networking footprint for your specific data model.

2026-04-20
dtos-and-message-repository
소프트웨어 개발자

Use a MessageRepository to define a special DTO class for your writes.

2026-04-20
extracting-all-local-data
소프트웨어 개발자

There are distinct usage scenarios where mapping data asynchronously from a server securely strictly introduces UI latency against pre-populated ma...

2026-04-20
filtering-requests
소프트웨어 개발자

Filters communicate intent to limit to read a specific subset of data. They are never executed locally and rely on "remote" sources correctly applying the filter to their network request.

2026-04-20
paginating-reads
소프트웨어 개발자

Paginating reads relies on passing a Pagination object to a RequestDetails and having a remote Source which correctly applies its values to the network request.

2026-04-20
reading-data
소프트웨어 개발자

Reading data involves calling getById, getByIds, or getItems on a Repository.

2026-04-20
retries-offline-queuing
소프트웨어 개발자

SourceLists can be configured to store failed Operations for later retry if a `RetryPolicy` is supplied.

2026-04-20
structuring-source-list
소프트웨어 개발자

SourceLists should be defined with Sources sorted by immediacy; with on-device Sources appearing first and remote, API-based Sources appearing last. Often, 1 local Source and 1 remote Source is all that will appear in a SourceList.

2026-04-20
writing-data
소프트웨어 개발자

Writing data involves calling setItem and, optionally, setItems on a Repository.

2026-04-20