Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. get '/test' => sub {
  2. my $self = shift;
  3. srand;
  4. my $random_string=rand 10;
  5. $self->render(text => $random_string."\n");
  6. };
  7.  
  8. [becks@zappa dummy_client]$ curl http://127.0.0.1:3000/test
  9. 2.54768867119314
  10. [becks@zappa dummy_client]$ curl http://127.0.0.1:3000/test
  11. 9.63220070422725
  12. [becks@zappa dummy_client]$ curl http://127.0.0.1:3000/test
  13. 6.55116524853842
  14. [becks@zappa dummy_client]$ curl http://127.0.0.1:3000/test
  15. 7.47458345330418
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement