search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

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

fix: increase VM memory and keep machine running

- bump RAM from 256mb to 512mb (fixes SIGABRT crashes under load)
- disable auto_stop to eliminate cold start latency
- add bench-search script for performance testing
- gitignore .loq_cache

🤖 Generated with [Claude Code](https://claude.com/claude-code)

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

zzstoatzz 1f07b37f 6d8f54ac

+201 -2
+1
.gitignore
··· 5 5 *.db 6 6 .zig-cache/ 7 7 zig-out/ 8 + .loq_cache
+2 -2
backend/fly.toml
··· 10 10 [http_service] 11 11 internal_port = 3000 12 12 force_https = true 13 - auto_stop_machines = 'stop' 13 + auto_stop_machines = 'off' 14 14 auto_start_machines = true 15 15 min_machines_running = 1 16 16 processes = ['app'] ··· 20 20 destination = '/data' 21 21 22 22 [[vm]] 23 - memory = '256mb' 23 + memory = '512mb' 24 24 cpu_kind = 'shared' 25 25 cpus = 1