functionscacheTagVersion: NextOn this pagecacheTagcacheTag(tag): void Sets a custom identifier for the current cache operation const fetchUser = cache(async (id: string) => { cacheTag(`user:${id}`); return await db.users.findOne(id);}); ParameterTypeOptionalDescriptiontagstring❌The custom cache tag Source