mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 22:26:19 +00:00
sitio: precachear query index
This commit is contained in:
parent
fe63599e0e
commit
eb2b68fab0
1 changed files with 23 additions and 15 deletions
|
@ -3,20 +3,9 @@ import { db, schema } from "$lib/server/db";
|
||||||
const { precios } = schema;
|
const { precios } = schema;
|
||||||
import { sql } from "drizzle-orm";
|
import { sql } from "drizzle-orm";
|
||||||
|
|
||||||
let cache: null | { key: Date; data: { precios: Precios } } = null;
|
let cache: Promise<{ key: Date; data: { precios: Precios } }> = doQuery();
|
||||||
|
|
||||||
type Precios = {
|
async function doQuery() {
|
||||||
ean: string;
|
|
||||||
name: string | null;
|
|
||||||
imageUrl: string | null;
|
|
||||||
}[];
|
|
||||||
|
|
||||||
export const load: PageServerLoad = async ({
|
|
||||||
params,
|
|
||||||
}): Promise<{ precios: Precios }> => {
|
|
||||||
if (cache && +new Date() < +cache.key + 1000 * 60 * 10) {
|
|
||||||
return cache.data;
|
|
||||||
}
|
|
||||||
const q = db
|
const q = db
|
||||||
.select({
|
.select({
|
||||||
ean: precios.ean,
|
ean: precios.ean,
|
||||||
|
@ -30,6 +19,25 @@ export const load: PageServerLoad = async ({
|
||||||
.limit(150);
|
.limit(150);
|
||||||
const res = await q;
|
const res = await q;
|
||||||
const data = { precios: res };
|
const data = { precios: res };
|
||||||
cache = { key: new Date(), data };
|
return { key: new Date(), data };
|
||||||
return data;
|
}
|
||||||
|
|
||||||
|
setInterval(
|
||||||
|
async () => {
|
||||||
|
const c = await doQuery();
|
||||||
|
cache = Promise.resolve(c);
|
||||||
|
},
|
||||||
|
4 * 60 * 60 * 1000,
|
||||||
|
);
|
||||||
|
|
||||||
|
type Precios = {
|
||||||
|
ean: string;
|
||||||
|
name: string | null;
|
||||||
|
imageUrl: string | null;
|
||||||
|
}[];
|
||||||
|
|
||||||
|
export const load: PageServerLoad = async ({
|
||||||
|
params,
|
||||||
|
}): Promise<{ precios: Precios }> => {
|
||||||
|
return (await cache).data;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue