diff --git a/Performance-%26-Scaling.md b/Performance-%26-Scaling.md index 7a408c3..4f609f5 100644 --- a/Performance-%26-Scaling.md +++ b/Performance-%26-Scaling.md @@ -199,7 +199,7 @@ DELAY_BETWEEN_REQUESTS=3 # More conservative timing # If duplicate detection is slow: # Clean processed URLs periodically (monthly): -docker-compose exec gts-holmirdas rm -f /app/data/processed_urls.json +docker compose exec gts-holmirdas rm -f /app/data/processed_urls.json ``` #### Federation Growth Optimization @@ -243,7 +243,7 @@ DELAY_BETWEEN_REQUESTS=2 # Increase from 1 #### Issue: Duplicate Detection Slow ```bash # Solution: Storage cleanup (monthly maintenance) -docker-compose exec gts-holmirdas rm -f /app/data/processed_urls.json +docker compose exec gts-holmirdas rm -f /app/data/processed_urls.json # Note: This forces fresh state tracking # Posts will be reprocessed once, then normal duplicate detection resumes