fix: invalidate home cache when updating read progress

- Add cache tags support to BaseApiService
- Tag home data with 'home-data' tag in HomeService
- Use revalidateTag('home-data', 'max') after read progress updates
- With 'max' profile: serve stale while fetching fresh in background
This commit is contained in:
2026-02-28 10:16:12 +01:00
parent 7523ec06e1
commit ecce0a9738
3 changed files with 39 additions and 18 deletions

View File

@@ -7,8 +7,12 @@ import { AppError } from "../../utils/errors";
export type { HomeData };
// Cache tag pour invalidation ciblée
const HOME_CACHE_TAG = "home-data";
export class HomeService extends BaseApiService {
private static readonly CACHE_TTL = 120; // 2 minutes
private static readonly CACHE_TTL = 120; // 2 minutes fallback
private static readonly CACHE_TAG = HOME_CACHE_TAG;
static async getHomeData(): Promise<HomeData> {
try {
@@ -25,7 +29,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaBook>>(
{
@@ -39,7 +43,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaBook>>(
{
@@ -51,7 +55,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaBook>>(
{
@@ -63,7 +67,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
this.fetchFromApi<LibraryResponse<KomgaSeries>>(
{
@@ -75,7 +79,7 @@ export class HomeService extends BaseApiService {
},
},
{},
{ revalidate: this.CACHE_TTL }
{ revalidate: this.CACHE_TTL, tags: [this.CACHE_TAG] }
),
]);