Precache all thumbnails and pinned originals inside open() (closes #48)
check / check (push) Successful in 26s
check / check (push) Successful in 26s
Precaches aggressively inside open(): every thumbnail (newest first, through the shared thumbnail pool, never evicted; visible/ahead requests preempt the background fill) and the pinned originals — the favorites album plus every file within precacheOriginalsDays (default 7) of the newest takenAt — through the content pool. The pinned set integrates with the #47 eviction hook; when the window moves or a favorite is removed, files become ordinary evictable originals. open() options precacheThumbnails/precacheOriginals/precacheOriginalsDays; progress via onProgress/status(). Model: opus-4-8
This commit was merged in pull request #73.
This commit is contained in:
@@ -99,6 +99,10 @@ describe("Library content wiring", () => {
|
||||
cacheDirectory: join(root, "cache"),
|
||||
contentSource: source,
|
||||
refreshIntervalSeconds: 3600,
|
||||
// On-demand wiring only; the background precache (#48) is covered
|
||||
// in precache.test.ts and would race the exact-count assertions.
|
||||
precacheThumbnails: false,
|
||||
precacheOriginals: false,
|
||||
});
|
||||
|
||||
const photo = lib.photos.byID({ fileID: 1 });
|
||||
@@ -122,6 +126,10 @@ describe("Library content wiring", () => {
|
||||
cacheDirectory: join(root, "cache"),
|
||||
contentSource: source,
|
||||
refreshIntervalSeconds: 3600,
|
||||
// On-demand wiring only; the background precache (#48) is covered
|
||||
// in precache.test.ts and would race the exact-count assertions.
|
||||
precacheThumbnails: false,
|
||||
precacheOriginals: false,
|
||||
});
|
||||
|
||||
const results = await lib.thumbnails.ensure({
|
||||
|
||||
Reference in New Issue
Block a user