php - Siege not cycling through URL list -


i'm using siege act cache warmer varnish on wordpress site. i've set simple script grab latest url list dynamic sitemap, output them file, purge cache using varnishadm , run siege against url list repopulate cache.

the problem siege part of equation. if run following command:

/usr/bin/siege -c1000 -d3 -r1 -v -i -f url-list-example.txt 

it works fine randomly accesses url list rather hit 1 after another. i've read removing -i flag command is:

/usr/bin/siege -c1000 -d3 -r1 -v -f url-list-dekanta.txt 

should mean siege runs through list once , stops doesn't this. instead hits first url / multiple times , stops.

could please explain i'm doing wrong command please? i've read through docs , nothing seems work way want to. many thanks.

the man page of siege mentions explicitly --reps=once; , source implements that exception. seems using --reps=once instead of -r1 might fix you


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -