我試圖用httperf加載測試我的Rails(3.2.13)應用程序。它對於不需要cookie的頁面非常有效。但是,我無法使它適用於需要cookie的頁面。我正在使用Gregg Pollack的httperf(https://github.com/Gregg/httperf_big_cookies),因爲官方版本不支持大餅乾。Rails使用httperf加載測試
這裏是我所使用的命令:
httperf --session-cookie --wsesslog=1,5,path.txt --rate=1 --timeout=15 --server=localhost --port=3000
而且,這是在文件path.txt:
/log_in
/sessions method=POST contents='utf8=✓&remember_me=1&commit=Login&[email protected]&password=password'
cookies
該方法總是返回nil
內部控制器。
所以,請建議我如何克服這個問題或更好的工具(基於控制檯)來測試rails應用程序的負載。