SOP-003: Drip Feed Configuration
Document Control
| Field | Value |
|---|---|
| SOP ID | SOP-003 |
| Version | 1.0 |
| Status | Active |
| Last Updated | December 2024 |
Purpose
This procedure explains how to configure drip feed settings for natural-looking link indexing patterns.
Prerequisites
- Active Omega Indexer account
- Campaign ready to create
- Understanding of your indexing goals
What is Drip Feed?
Drip feed distributes your URL submissions over multiple days instead of submitting all at once.
┌─────────────────────────────────────────────────────────────────────┐
│ DRIP FEED vs INSTANT SUBMISSION │
├─────────────────────────────────────────────────────────────────────┤
│ │
│ WITHOUT Drip Feed (100 URLs): │
│ ┌─────────────────────────────────────────────────────────────┐ │
│ │ Day 1: ████████████████████████████████████████ 100 URLs │ │
│ │ Day 2: │ │
│ │ Day 3: │ │
│ └─────────────────────────────────────────────────────────────┘ │
│ │
│ WITH Drip Feed (100 URLs, 5 days): │
│ ┌─────────────────────────────────────────────────────────────┐ │
│ │ Day 1: ████████ 20 URLs │ │
│ │ Day 2: ████████ 20 URLs │ │
│ │ Day 3: ████████ 20 URLs │ │
│ │ Day 4: ████████ 20 URLs │ │
│ │ Day 5: ████████ 20 URLs │ │
│ └─────────────────────────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────────┘Why Use Drip Feed?
| Benefit | Description |
|---|---|
| Natural Pattern | Mimics organic link discovery |
| Better Success Rate | Gradual submissions may improve indexing |
| Resource Management | Spreads credit usage over time |
| Safer for Large Batches | Reduces risk of appearing spammy |
Procedure
Step 1: Determine Optimal Drip Duration
Use this guide based on your campaign size:
| URLs in Campaign | Recommended Drip Days | URLs per Day |
|---|---|---|
| 1-50 | Not needed | All at once |
| 51-100 | 3 days | ~17-33/day |
| 101-200 | 5 days | ~20-40/day |
| 201-500 | 7 days | ~29-71/day |
| 501-1000 | 10 days | ~50-100/day |
| 1000+ | 14 days | ~70+/day |
Step 2: Enable Drip Feed During Campaign Creation
- Go to New Campaign
- Add your campaign name
- Paste your URLs
- Locate the Drip Feed option
- Toggle it ON
Step 3: Set Drip Duration
- Enter the number of days in the Drip Feed field
- System will automatically calculate URLs per day
- Review the distribution preview
Example: 350 URLs with 7-day drip feed
──────────────────────────────────────
Day 1: 50 URLs
Day 2: 50 URLs
Day 3: 50 URLs
Day 4: 50 URLs
Day 5: 50 URLs
Day 6: 50 URLs
Day 7: 50 URLs (remaining)Step 4: Submit Campaign
- Review the drip feed configuration
- Verify the daily distribution looks correct
- Click Submit Campaign
Drip Feed with API
When using the API, add the dripfeed parameter:
POST https://www.omegaindexer.com/amember/dashboard/api
Parameters:
- apikey: your_api_key
- campaignname: My Campaign
- urls: url1|url2|url3
- dripfeed: 7 ← Number of daysExample API Request:
bash
curl -X POST https://www.omegaindexer.com/amember/dashboard/api \
-d "apikey=YOUR_API_KEY" \
-d "campaignname=Blog Posts Batch" \
-d "urls=https://example.com/post1|https://example.com/post2|https://example.com/post3" \
-d "dripfeed=5"Verification Checklist
- [ ] Calculated appropriate drip duration for URL count
- [ ] Drip feed toggle is enabled
- [ ] Number of days is entered correctly
- [ ] Daily distribution looks reasonable
- [ ] Campaign submitted successfully
Best Practices
- Don't Over-Drip - 14 days is usually maximum needed
- Consider Timing - Submit campaigns early in the week
- Match Natural Patterns - Think about how organically you'd publish content
- Monitor Progress - Check daily submissions are occurring
Common Scenarios
Scenario 1: New Website Launch
URLs: 200 pages
Drip: 10 days
Reason: New sites benefit from gradual discoveryScenario 2: Regular Blog Updates
URLs: 30 new posts
Drip: Not needed
Reason: Small batch, normal publishing patternScenario 3: Large Site Audit
URLs: 1500 pages
Drip: 14 days
Reason: Large volume needs maximum distributionTroubleshooting
| Issue | Solution |
|---|---|
| Can't find drip feed option | Ensure you're on campaign creation page |
| Drip not working as expected | Check campaign status, verify submission |
| Want to change drip after submit | Cannot modify; create new campaign |
| API drip feed not applying | Verify parameter name is dripfeed (lowercase) |