pdina
pdina
DTDrizzle Team
Created by xexr. on 5/16/2023 in #help
Drizzle with Next 13.4.2 & Vercel Postgres Timeout
@alcaponeyou this may be a dumb question, but if the application (frontend and backend) is running on Vercel servers, and the database is on Neon, wouldn't this introduce latency?
8 replies
DTDrizzle Team
Created by pdina on 5/18/2023 in #help
Create GIN index in Postgres
what I tried (not working):
...
(table) => {
return {
name: index('name')
.on(table.name)
.using(sql`gin (${table.name} gin_trgm_ops)`)
};
}
}
...
...
(table) => {
return {
name: index('name')
.on(table.name)
.using(sql`gin (${table.name} gin_trgm_ops)`)
};
}
}
...
10 replies