Advertisement
overloop

nodejs_vs_apache_static_data2.txt

Jun 7th, 2014
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. cat /proc/cpuinfo | grep "model name"
  2. model name : Intel(R) Atom(TM) CPU N270 @ 1.60GHz
  3.  
  4. cat /proc/meminfo | grep "MemTotal"
  5. MemTotal: 2054360 kB
  6.  
  7. du -hs content
  8. 1.6G content
  9.  
  10. find content -type f | wc -l
  11. 5829
  12.  
  13. wc -l apache_urls.txt nodejs_urls.txt
  14. 5829 apache_urls.txt
  15. 5829 nodejs_urls.txt
  16.  
  17. siege -f nodejs_urls.txt -c 10 -r once -b
  18. ** SIEGE 2.70
  19. ** Preparing 10 concurrent users for battle.
  20. The server is now under siege.. done.
  21. Transactions: 58290 hits
  22. Availability: 100.00 %
  23. Elapsed time: 385.98 secs
  24. Data transferred: 15821.26 MB
  25. Response time: 0.07 secs
  26. Transaction rate: 151.02 trans/sec
  27. Throughput: 40.99 MB/sec
  28. Concurrency: 9.95
  29. Successful transactions: 58290
  30. Failed transactions: 0
  31. Longest transaction: 1.25
  32. Shortest transaction: 0.00
  33.  
  34. siege -f apache_urls.txt -c 10 -r once -b
  35. ** SIEGE 2.70
  36. ** Preparing 10 concurrent users for battle.
  37. The server is now under siege.. done.
  38. Transactions: 58290 hits
  39. Availability: 100.00 %
  40. Elapsed time: 152.62 secs
  41. Data transferred: 15821.26 MB
  42. Response time: 0.02 secs
  43. Transaction rate: 381.93 trans/sec
  44. Throughput: 103.66 MB/sec
  45. Concurrency: 7.65
  46. Successful transactions: 58290
  47. Failed transactions: 0
  48. Longest transaction: 0.68
  49. Shortest transaction: 0.00
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement