I'm trying to load test my Rails (3.2.13) application with httperf. It worked very well for the pages which don't require cookies. But, I couldn't make it working for the pages which require cookies. I'm using Gregg Pollack's httperf (https://github.com/Gregg/httperf_big_cookies) because the official version does not support big cookies.
Here is the command I used:
httperf --session-cookie --wsesslog=1,5,path.txt --rate=1 --timeout=15 --server=localhost --port=3000
And, this is the path.txt file:
/log_in
/sessions method=POST contents='utf8=✓&remember_me=1&commit=Login&email=john@widgetsco.com&password=password'
The cookies
method always returns nil
inside controllers.
So, please suggest me how can I overcome the problem or a better tool (console based) for testing load of rails applications.