GET /xrpc/app.bsky.actor.searchActorsTypeahead typeahead.waow.tech
15
fork

Configure Feed

Select the types of activity you want to include in your feed.

bump handle resolution batch from 200 to 1000 per hour

ingester adds ~2k actors/hour without handles, 200/hour wasn't
keeping up.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz 2240c792 21bc0338

+1 -1
+1 -1
src/index.ts
··· 139 139 /** resolve handles for actors missing them via slingshot */ 140 140 async function resolveHandles(env: Env): Promise<void> { 141 141 const { results } = await env.DB.prepare( 142 - "SELECT did FROM actors WHERE handle = '' ORDER BY updated_at DESC LIMIT 200" 142 + "SELECT did FROM actors WHERE handle = '' ORDER BY updated_at DESC LIMIT 1000" 143 143 ).all<{ did: string }>(); 144 144 if (!results || results.length === 0) return; 145 145