* territory specific trust * functional parity with master * revert back to materialized view for ranking * update query for populating subWeightedVotes * fix anon hot comments * fix zap denormalization, change weightedComments to be for zaps, order updates of ancestors to prevent deadlocks * reduce weight of comment zaps for hot score * do zap ancestor updates together * initialize trust in new/unpopular territories * simplify denormalization of zap/downzaps * recompute all scores
42 lines
1.5 KiB
JavaScript
42 lines
1.5 KiB
JavaScript
import createPrisma from '@/lib/create-prisma'
|
|
|
|
const viewPrefixes = ['reg_growth', 'spender_growth', 'item_growth', 'spending_growth',
|
|
'stackers_growth', 'stacking_growth', 'user_stats', 'sub_stats']
|
|
|
|
// this is intended to be run everyday after midnight CT
|
|
export async function views ({ data: { period } = { period: 'days' } }) {
|
|
// grab a greedy connection
|
|
const models = createPrisma({ connectionParams: { connection_limit: 1 } })
|
|
|
|
try {
|
|
// these views are bespoke so we can't use the loop
|
|
if (period === 'days') {
|
|
await models.$queryRawUnsafe('REFRESH MATERIALIZED VIEW CONCURRENTLY user_values_days')
|
|
await models.$queryRawUnsafe('REFRESH MATERIALIZED VIEW CONCURRENTLY rewards_days')
|
|
}
|
|
if (period === 'hours') {
|
|
await models.$queryRawUnsafe('REFRESH MATERIALIZED VIEW CONCURRENTLY user_values_today')
|
|
await models.$queryRawUnsafe('REFRESH MATERIALIZED VIEW CONCURRENTLY rewards_today')
|
|
}
|
|
for (const view of viewPrefixes) {
|
|
await models.$queryRawUnsafe(`REFRESH MATERIALIZED VIEW CONCURRENTLY ${view}_${period}`)
|
|
}
|
|
} finally {
|
|
await models.$disconnect()
|
|
}
|
|
}
|
|
|
|
// this should be run regularly ... like, every 5 minutes
|
|
export async function rankViews () {
|
|
// grab a greedy connection
|
|
const models = createPrisma({ connectionParams: { connection_limit: 1 } })
|
|
|
|
try {
|
|
for (const view of ['hot_score_view']) {
|
|
await models.$queryRawUnsafe(`REFRESH MATERIALIZED VIEW CONCURRENTLY ${view}`)
|
|
}
|
|
} finally {
|
|
await models.$disconnect()
|
|
}
|
|
}
|